-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add addonmanager.kubernetes.io label documentation #41236
Add addonmanager.kubernetes.io label documentation #41236
Conversation
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
FYI @tengqm |
- `Reconcile`: Addon resources will be periodically reconciled with the expected state. If there are any differences, | ||
the add-on manager will recreate, reconfigure or delete the resources as needed. This is the default mode if no label is specified. | ||
- `EnsureExists`: Addon resources will be checked for existence only but will not be modified after creation. | ||
The add-on manager will create or re-create the resources when there is no instance of the resource with that name. | ||
- `Ignore`: Addon resources will be ignored. This mode is useful for add-ons that are not compatible with | ||
the add-on manager or that are managed by another controller. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
I'd suggest we wrap and indent the list items in a different way.
- `Reconcile`: Addon resources will be periodically reconciled with the expected state. If there are any differences, | |
the add-on manager will recreate, reconfigure or delete the resources as needed. This is the default mode if no label is specified. | |
- `EnsureExists`: Addon resources will be checked for existence only but will not be modified after creation. | |
The add-on manager will create or re-create the resources when there is no instance of the resource with that name. | |
- `Ignore`: Addon resources will be ignored. This mode is useful for add-ons that are not compatible with | |
the add-on manager or that are managed by another controller. | |
- `Reconcile`: Addon resources will be periodically reconciled with the expected state. | |
If there are any differences, the add-on manager will recreate, reconfigure or delete | |
the resources as needed. This is the default mode if no label is specified. | |
- `EnsureExists`: Addon resources will be checked for existence only but will not be | |
modified after creation. The add-on manager will create or re-create the resources | |
when there is no instance of the resource with that name. | |
- `Ignore`: Addon resources will be ignored. This mode is useful for add-ons that are | |
not compatible with the add-on manager or that are managed by another controller. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @tengqm, I agree with you on the line wrapping. This document, in particular is 1153 lines long, I see literally hundreds of lines that are too long. I don't mind wrapping them as well. Do you want me to just do that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LGTM I left means that I'm okay with this PR merged as is.
The line wrapping is a nit to be fixed in case you have another push.
As for other lines in the same file, maybe a dedicated tidy up PR is needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Thanks
LGTM label has been added. Git tree hash: a62f36f2d5e754c53f98cca8dd96adf6307a81c0
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sftim The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Document addonmanager.kubernetes.io/mode label. Fixes #29189