-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Add --ignore-not-found=true to scaffolded undeploy
make target
#5195
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
Comments
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
It was added to Golang: https://github.com/operator-framework/operator-sdk/blob/master/testdata/go/v3/memcached-operator/Makefile#L118-L120 We still need to update the Makefile for Ansible/Helm and the new Go+Helm plugin. |
/lifecycle frozen |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
/lifecycle frozen |
Done for GO: https://github.com/operator-framework/operator-sdk/blob/master/testdata/go/v3/memcached-operator/Makefile#L126-L128 because of the KB bump Missing update the Ansible/Helm dockerfile boilerplate only |
Let me know if any work needs to be done on this issue @camilamacedo86 |
…boiler plate This avoid failure of any of these two commands if for some reason one or more of the kustomized resource is missing. Part of operator-framework/operator-sdk#5195 Signed-off-by: Samuel Gaist <[email protected]>
Feature Request
While deploying the objects in
config/
with kustomize, sometimes it goes wrong (user error) and not all the objects are created. When this happens,make undeploy
fails on the first object that doesn't exist. Its easy to work around, just delete them manually. However this interrupts development flow and is a bit annoying.If we add
--ignore-not-found
,make undeploy
will always try to delete all the objects./language go
/language ansible
/language helm
The text was updated successfully, but these errors were encountered: