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
the genereated dockerconfigjson isn't correct. its not working properly with non docker runtime such as containerd.
This Charts generates:
{ "registry.example.com": { "auth": "asdfasdf", "password": "test123", "username": "dummy" } }
What it actually should generate:
{ "auths": { "registry.example.com": { "username": "dummy", "password": "test123", "auth": "asdfasdf" } } }
The text was updated successfully, but these errors were encountered:
So it's missing a }? Which chart and version?
Sorry, something went wrong.
ahh sorry for not formattig it correctly.,
See: https://helm.sh/docs/howto/charts_tips_and_tricks/#creating-image-pull-secrets
this is how it should be:
{{- define "imagePullSecret" }} {{- printf "{\"auths\": {\"%s\": {\"auth\": \"%s\"}}}" .Values.imageCredentials.registry (printf "%s:%s" .Values.imageCredentials.username .Values.imageCredentials.password | b64enc) | b64enc }} {{- end }}
your chart wasn't working for me on containerd I had to change it. I guess it only works with older docker versions.
Are you speaking of the imagepullsecrets or the pullsecret chart?
No branches or pull requests
the genereated dockerconfigjson isn't correct. its not working properly with non docker runtime such as containerd.
This Charts generates:
What it actually should generate:
The text was updated successfully, but these errors were encountered: