mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 19:41:26 +00:00
11 lines
245 B
YAML
11 lines
245 B
YAML
{{- if .Values.registrySecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ .Release.Name }}-regsecret
|
|
type: kubernetes.io/dockerconfigjson
|
|
stringData:
|
|
.dockerconfigjson: |
|
|
{{- toJson .Values.registrySecret | nindent 4 }}
|
|
{{- end }}
|