-
Notifications
You must be signed in to change notification settings - Fork 5.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
Need a way to delete a single resource #262
Comments
This will be handled by the |
d633f6b adds the ability to supply |
Reopening. I incorrectly thought that after the addition of the |
Fixed |
A user hit an issue where an
kubectl edit
was performed from underneath argocd'skubectl apply
. A field was added toselector.matchLabels
. Because of this,kubectl apply
did not remove this field (since it believed it to be defaulted by a controller), and the apply failed due to mismatched labels.To handle issues like this, we additionally need a "replace" sync strategy, which will perform a
kubectl replace
instead of apply. This will also solve the problem when a user wishes to modify immutable fields (e.g. a service type needs to change from LoadBalancer)The text was updated successfully, but these errors were encountered: