-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat(labels): add part-of selector label #211
feat(labels): add part-of selector label #211
Conversation
The
tl;dr the label selectors are immutable, so upgrading the Deployment in-place can't happen. I think this is kind of failure is OK so long as it only happens on semver major versions when breakages are expected (see #202). $ bash ct.bash 2>&1 | tee ct.log
$ bash ct.bash --upgrade 2>&1 | tee ct-upgrade.log
$ diff ct.log ct-upgrade.log |
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.
We already have some unreleased label selector changes right? So I think the upgrade should still work after we renamed the deployment here like we did in the operator?
I think a 3.0 -> 4.0 upgrade will work because of this renaming, but if I understand how the upgrade test works correctly, it's trying to upgrade from main to this PR - so essentially 4.0 to 4.0, and there is no renaming happening between versions, hence the apparent immutability conflict. |
Yup that sounds totally fine to me. |
Related to cryostatio/cryostat-openshift-console-plugin#2