We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a Flux Kustomization in which I want to override an image digest:
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2 kind: Kustomization metadata: name: myenv namespace: flux-system spec: interval: 5m0s path: ./environments/myenv prune: true sourceRef: kind: GitRepository name: myenv images: - name: myregistry/myimage digest: "sha256:12345"
Overriding the image tag via newTag works, but overriding the digest does not.
newTag
Overriding the digest should work according to the documentation here: https://fluxcd.io/docs/components/kustomize/kustomization/#images The implementation was done within this ticket: #193
I adapted an existing test to reproduce this issue: https://github.com/abth/flux2/tree/override-image-digest
The text was updated successfully, but these errors were encountered:
@somtochiama could you please take a look at this?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I have a Flux Kustomization in which I want to override an image digest:
Overriding the image tag via
newTag
works, but overriding the digest does not.Overriding the digest should work according to the documentation here:
https://fluxcd.io/docs/components/kustomize/kustomization/#images
The implementation was done within this ticket:
#193
I adapted an existing test to reproduce this issue:
https://github.com/abth/flux2/tree/override-image-digest
The text was updated successfully, but these errors were encountered: