-
Notifications
You must be signed in to change notification settings - Fork 1.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
Clean up order should be reverse of install order #7284
Labels
area/modules
help wanted
We would love to have this done, but don't have the bandwidth, need help from contributors
kind/bug
Something isn't working
priority/p3
agreed that this would be good to have, but no one is available at the moment.
Comments
MarlonGamez
added
area/modules
kind/bug
Something isn't working
priority/p2
May take a couple of releases
labels
Apr 12, 2022
makes complete sense. |
tejal29
added
priority/p3
agreed that this would be good to have, but no one is available at the moment.
help wanted
We would love to have this done, but don't have the bandwidth, need help from contributors
and removed
priority/p2
May take a couple of releases
labels
Sep 12, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 6, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 7, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 7, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 12, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 12, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 14, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 14, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 14, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 14, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 19, 2022
tejal29
pushed a commit
that referenced
this issue
Oct 19, 2022
* fix: reverse order of deployers during cleanup (#7284) * chore: add .tool-versions to gitignore .tool-versions is used by asdf (package manager) to set the go version for this repository Co-authored-by: Thomas Steinert <hello@chroni.cc>
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Oct 24, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Nov 21, 2022
chronicc
added a commit
to chronicc/skaffold
that referenced
this issue
Nov 21, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/modules
help wanted
We would love to have this done, but don't have the bandwidth, need help from contributors
kind/bug
Something isn't working
priority/p3
agreed that this would be good to have, but no one is available at the moment.
Expected behavior
skaffold dev
cleans up in the reverse order of its install order.Actual behavior
skaffold dev
cleans up in the same order (?) as its install order.Information
v1.38.0
macOS 12.3.1
Steps to reproduce the behavior
The idea is that CRDs are installed first, and then the actual CRs are deployed - which works fine for the initial installation. However, when clean up of
skaffold dev
runs, it seems to be executing clean up in the same order as install: firstpostgres-operator-crds
is removed, but then the removal ofpostgres-operator
fails as CRDs aren't there anymore.Originally I tried just using
releases
list within same module for both, but it fails similarly on clean up.The text was updated successfully, but these errors were encountered: