add caSecret
Signed-off-by: Dondon Alexis <Y3GDTU@ad.insee.intra>
This commit is contained in:
parent
ba20d95182
commit
18fbf94840
2 changed files with 8 additions and 0 deletions
|
@ -83,6 +83,11 @@ data:
|
||||||
bucket: {{ tpl (.Values.artifactRepository.s3.bucket | default "") . }}
|
bucket: {{ tpl (.Values.artifactRepository.s3.bucket | default "") . }}
|
||||||
endpoint: {{ tpl (.Values.artifactRepository.s3.endpoint | default "") . }}
|
endpoint: {{ tpl (.Values.artifactRepository.s3.endpoint | default "") . }}
|
||||||
insecure: {{ .Values.artifactRepository.s3.insecure }}
|
insecure: {{ .Values.artifactRepository.s3.insecure }}
|
||||||
|
{{- if .Values.artifactRepository.s3.caSecret }}
|
||||||
|
caSecret:
|
||||||
|
name: {{ tpl .Values.artifactRepository.s3.caSecret.name . }}
|
||||||
|
key: {{ tpl .Values.artifactRepository.s3.caSecret.key . }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.artifactRepository.s3.keyFormat }}
|
{{- if .Values.artifactRepository.s3.keyFormat }}
|
||||||
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -775,6 +775,9 @@ artifactRepository:
|
||||||
# key: secretkey
|
# key: secretkey
|
||||||
# # insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
# # insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
||||||
# insecure: false
|
# insecure: false
|
||||||
|
# caSecret:
|
||||||
|
# name: ca-root
|
||||||
|
# key: cert.pem
|
||||||
# bucket:
|
# bucket:
|
||||||
# endpoint:
|
# endpoint:
|
||||||
# region:
|
# region:
|
||||||
|
|
Loading…
Reference in a new issue