-
Notifications
You must be signed in to change notification settings - Fork 822
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
Tags immutability should be enforced by PR tests #5221
Comments
cc @kubernetes/release-engineering /sig release |
This also means that we have manifests that don't match reality and will never be fixed (!) We should probably revert any tag mutations once we prevent introducing new ones. I think the only robust way to do this is to parse the full config before and after the PR commits and diff the config in memory, git diff can be misleading so just grepping the diff will cause false positives when config is modified in otherwise acceptable ways (e.g. inserting a new image into a file). |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
/lifecycle frozen |
I recently submitted a PR updating the image digest for a tag: #5220
However, I noticed the image digest for registry.k8s.io/jobset/jobset:v0.1.1 never updated, and after discussion with @BenTheElder I learned tags are immutable.
I think this should be enforced on PRs via tests, rather than silently failing in the image promotion process, in order to avoid confusion.
/kind bug
The text was updated successfully, but these errors were encountered: