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>
This commit is contained in:
parent
f8b1fecd81
commit
0cf32acff2
3 changed files with 10 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.5.4
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.40.10
|
version: 0.40.11
|
||||||
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -17,4 +17,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- 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 "") . }}
|
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