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
When applying the sigsci-values.yaml from the documentation to the ingress-nginx helm chart, the ingress-nginx pods fail to start with:
sigsci-values.yaml
ingress-nginx
Failed to pull image "signalsciences/sigsci-nginx-ingress-controller:0.48.1@sha256:e9fb216ace49dfa4a5983b183067e97496e7a8b307d2093f4278cd550c303899": rpc error: code = Unknown desc = Error response from daemon: manifest for signalsciences/sigsci-nginx-ingress-controller@sha256:e9fb216ace49dfa4a5983b183067e97496e7a8b307d2093f4278cd550c303899 not found: manifest unknown: manifest unknown
The reason for this is that the digest that is provided via the original helmchart: https://github.com/kubernetes/ingress-nginx/blob/05a3d144de71933a43d49fd2ea38ef06e76bdaca/charts/ingress-nginx/values.yaml#L19
does not match the digest of the sigsci-nginx-ingress-controller images, there are two ways to fix it:
sigsci-nginx-ingress-controller
controller.image.digest
false
The text was updated successfully, but these errors were encountered:
digest: false
Faced the same issue. Spent far too long wondering why it wasn't working.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When applying the
sigsci-values.yaml
from the documentation to theingress-nginx
helm chart, the ingress-nginx pods fail to start with:Failed to pull image "signalsciences/sigsci-nginx-ingress-controller:0.48.1@sha256:e9fb216ace49dfa4a5983b183067e97496e7a8b307d2093f4278cd550c303899": rpc error: code = Unknown desc = Error response from daemon: manifest for signalsciences/sigsci-nginx-ingress-controller@sha256:e9fb216ace49dfa4a5983b183067e97496e7a8b307d2093f4278cd550c303899 not found: manifest unknown: manifest unknown
The reason for this is that the digest that is provided via the original helmchart:
https://github.com/kubernetes/ingress-nginx/blob/05a3d144de71933a43d49fd2ea38ef06e76bdaca/charts/ingress-nginx/values.yaml#L19
does not match the digest of the
sigsci-nginx-ingress-controller
images, there are two ways to fix it:controller.image.digest
controller.image.digest
tofalse
which then it will be ignored and not used, see https://github.com/kubernetes/ingress-nginx/blob/05a3d144de71933a43d49fd2ea38ef06e76bdaca/charts/ingress-nginx/templates/controller-deployment.yaml#L75The text was updated successfully, but these errors were encountered: