Skip to content

Commit 844afb6

Browse files
authored
feat(argo-workflows): Support ephemeral credentials for s3 (#3101)
feat(argo-workflows) Support ephemeral credentials for s3 Signed-off-by: Bart Versteeg <[email protected]>
1 parent 91ad829 commit 844afb6

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

charts/argo-workflows/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v3.6.2
33
name: argo-workflows
44
description: A Helm chart for Argo Workflows
55
type: application
6-
version: 0.45.2
6+
version: 0.45.3
77
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
88
home: https://github.com/argoproj/argo-helm
99
sources:
@@ -16,5 +16,5 @@ annotations:
1616
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
1717
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
1818
artifacthub.io/changes: |
19-
- kind: fixed
20-
description: Reference to ingress link was fixed
19+
- kind: added
20+
description: Support ephemeral credentials for s3 artifact repository

charts/argo-workflows/templates/controller/workflow-controller-config-map.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ data:
8383
secretKeySecret:
8484
key: {{ tpl .Values.artifactRepository.s3.secretKeySecret.key . }}
8585
name: {{ tpl .Values.artifactRepository.s3.secretKeySecret.name . }}
86+
{{- if .Values.artifactRepository.s3.sessionTokenSecret }}
87+
sessionTokenSecret:
88+
key: {{ tpl .Values.artifactRepository.s3.sessionTokenSecret.key . }}
89+
name: {{ tpl .Values.artifactRepository.s3.sessionTokenSecret.name . }}
90+
{{- end }}
8691
{{- end }}
8792
bucket: {{ tpl (.Values.artifactRepository.s3.bucket | default "") . }}
8893
endpoint: {{ tpl (.Values.artifactRepository.s3.endpoint | default "") . }}

charts/argo-workflows/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,9 @@ artifactRepository:
812812
# secretKeySecret:
813813
# name: "{{ .Release.Name }}-minio"
814814
# key: secretkey
815+
# sessionTokenSecret:
816+
# name: "{{ .Release.Name }}-minio"
817+
# key: sessionToken
815818
# # insecure will disable TLS. Primarily used for minio installs not configured with TLS
816819
# insecure: false
817820
# caSecret:

0 commit comments

Comments
 (0)