feat(argo-workflows): Support ephemeral credentials for s3 (#3101)
feat(argo-workflows) Support ephemeral credentials for s3 Signed-off-by: Bart Versteeg <8367621+bmjhversteeg@users.noreply.github.com>
This commit is contained in:
parent
91ad82947c
commit
844afb6611
3 changed files with 11 additions and 3 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.6.2
|
||||||
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.45.2
|
version: 0.45.3
|
||||||
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:
|
||||||
|
@ -16,5 +16,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
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: added
|
||||||
description: Reference to ingress link was fixed
|
description: Support ephemeral credentials for s3 artifact repository
|
||||||
|
|
|
@ -83,6 +83,11 @@ data:
|
||||||
secretKeySecret:
|
secretKeySecret:
|
||||||
key: {{ tpl .Values.artifactRepository.s3.secretKeySecret.key . }}
|
key: {{ tpl .Values.artifactRepository.s3.secretKeySecret.key . }}
|
||||||
name: {{ tpl .Values.artifactRepository.s3.secretKeySecret.name . }}
|
name: {{ tpl .Values.artifactRepository.s3.secretKeySecret.name . }}
|
||||||
|
{{- if .Values.artifactRepository.s3.sessionTokenSecret }}
|
||||||
|
sessionTokenSecret:
|
||||||
|
key: {{ tpl .Values.artifactRepository.s3.sessionTokenSecret.key . }}
|
||||||
|
name: {{ tpl .Values.artifactRepository.s3.sessionTokenSecret.name . }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
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 "") . }}
|
||||||
|
|
|
@ -812,6 +812,9 @@ artifactRepository:
|
||||||
# secretKeySecret:
|
# secretKeySecret:
|
||||||
# name: "{{ .Release.Name }}-minio"
|
# name: "{{ .Release.Name }}-minio"
|
||||||
# key: secretkey
|
# key: secretkey
|
||||||
|
# sessionTokenSecret:
|
||||||
|
# name: "{{ .Release.Name }}-minio"
|
||||||
|
# key: sessionToken
|
||||||
# # 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:
|
# caSecret:
|
||||||
|
|
Loading…
Reference in a new issue