You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to ask for the option to provide my own certificates to the registry. Almost everything is there already. I'm using like this in the values file:
The only missing thing is that extra registry-tls secret. with something like this in the values.yaml:
certs: {}# tls.crt: |# your base64 encoded crt file# tls.key: |# your base64 encoded key file
and a new secret in the templates. Something like this:
...
{{- with .Values.certs }}data:
{{- toYaml . | nindent 2 }}{{- end }}
Maybe event the extra definitions could be autogenerate as well if the .Values.certs is not empty. But I'm just guessing here. I have never written a chart before.
The text was updated successfully, but these errors were encountered:
I'd like to ask for the option to provide my own certificates to the registry. Almost everything is there already. I'm using like this in the values file:
The only missing thing is that extra
registry-tls
secret. with something like this in the values.yaml:and a new secret in the templates. Something like this:
Maybe event the extra definitions could be autogenerate as well if the .Values.certs is not empty. But I'm just guessing here. I have never written a chart before.
The text was updated successfully, but these errors were encountered: