feat(argo-workflows): add caSecret in s3 configuration (#2519)
* add caSecret Signed-off-by: Dondon Alexis <Y3GDTU@ad.insee.intra> * bump chart version Signed-off-by: Dondon Alexis <Y3GDTU@ad.insee.intra> * add changelog Signed-off-by: Dondon Alexis <Y3GDTU@ad.insee.intra> --------- Signed-off-by: Dondon Alexis <Y3GDTU@ad.insee.intra> Co-authored-by: Dondon Alexis <Y3GDTU@ad.insee.intra> Co-authored-by: Vlad Losev <vladlosev@users.noreply.github.com>pull/2522/head argo-workflows-0.40.11
parent
f8b1fecd81
commit
0cf32acff2
|
@ -3,7 +3,7 @@ appVersion: v3.5.4
|
|||
name: argo-workflows
|
||||
description: A Helm chart for Argo Workflows
|
||||
type: application
|
||||
version: 0.40.10
|
||||
version: 0.40.11
|
||||
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
sources:
|
||||
|
@ -17,4 +17,4 @@ annotations:
|
|||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: fixed
|
||||
description: Update argo-workflows documentation links to readthedocs
|
||||
description: Add caSecret in the artifactory.s3 configuration values.
|
||||
|
|
|
@ -83,6 +83,11 @@ data:
|
|||
bucket: {{ tpl (.Values.artifactRepository.s3.bucket | default "") . }}
|
||||
endpoint: {{ tpl (.Values.artifactRepository.s3.endpoint | default "") . }}
|
||||
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 }}
|
||||
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
||||
{{- end }}
|
||||
|
|
|
@ -775,6 +775,9 @@ artifactRepository:
|
|||
# key: secretkey
|
||||
# # insecure will disable TLS. Primarily used for minio installs not configured with TLS
|
||||
# insecure: false
|
||||
# caSecret:
|
||||
# name: ca-root
|
||||
# key: cert.pem
|
||||
# bucket:
|
||||
# endpoint:
|
||||
# region:
|
||||
|
|
Loading…
Reference in New Issue