| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
Updates documentation to reduce confusion around “dependent resources” terminology in the eventing docs, and refreshes the event-sources architecture illustration.
Changes:
Copilot reviewed 2 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| docs/content/en/docs/documentation/eventing.md | Terminology tweaks and diagram change (PNG → Mermaid) in the eventing documentation. |
| docs/content/en/docs/documentation/features.md | Updates a Java example signature in the features documentation. |
| docs/static/images/event-sources.png | Updated static diagram asset (now seemingly unused after switching to Mermaid). |
docs/content/en/docs/documentation/eventing.md:238
managed resources are changed or the primary resource `.spec` field is changed. If other fields like `.metadata` are changed on the primary resource, the reconciliation could be skipped. This behavior is supported out of the box and reconciliation is by default not triggered if changes to the primary resource do not increase the `.metadata.generation` field. Note that changes to `.metada.generation` are automatically handled by Kubernetes.
docs/content/en/docs/documentation/eventing.md:18
`Reconciler` will only listen by default to events affecting the primary resource type it is configured for. Event sources act as listen to events affecting these secondary resources so that a reconciliation of the associated primary resource can be triggered when needed. Note that
Sorry, something went wrong.
| public class DeploymentReconciler | ||
| implements Reconciler<Deployment>, TestExecutionInfoProvider { | ||
| implements Reconciler<Deployment> { |
There was a problem hiding this comment.
This PR is titled/described as improving the eventing docs image/wording, but this hunk also changes the example in features.md (removing TestExecutionInfoProvider). If this is intentional, consider briefly mentioning it in the PR description (or splitting into a separate docs PR) to keep review scope clear.
Sorry, something went wrong.
There was a problem hiding this comment.
Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.
Comments suppressed due to low confidence (2)docs/content/en/docs/documentation/eventing.md:18
`Reconciler` will only listen by default to events affecting the primary resource type it is configured for. Event sources act as listen to events affecting these secondary resources so that a reconciliation of the associated primary resource can be triggered when needed. Note that
docs/content/en/docs/documentation/eventing.md:238
managed resources are changed or the primary resource `.spec` field is changed. If other fields like `.metadata` are changed on the primary resource, the reconciliation could be skipped. This behavior is supported out of the box and reconciliation is by default not triggered if changes to the primary resource do not increase the `.metadata.generation` field. Note that changes to `.metada.generation` are automatically handled by Kubernetes.
Sorry, something went wrong.
The dependent resource might be confusing here, since we don't mean the feature but rather resource that we manage Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
| Back | FazBrowse Home | New Git URL |
The dependent resource might be confusing here, since we don't mean the feature but rather secondary resources.
Signed-off-by: Attila Mészáros a_meszaros@apple.com