feat: add support for setting roleARN and useSDKCreds properties for S3 artifact repository (#329)
This commit is contained in:
parent
46e08b1fe8
commit
f2a3adc7f4
3 changed files with 9 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "v2.7.6"
|
appVersion: "v2.7.6"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.8.2
|
version: 0.8.3
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -39,6 +39,12 @@ data:
|
||||||
{{- if .Values.artifactRepository.s3.region }}
|
{{- if .Values.artifactRepository.s3.region }}
|
||||||
region: {{ .Values.artifactRepository.s3.region }}
|
region: {{ .Values.artifactRepository.s3.region }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.artifactRepository.s3.roleARN }}
|
||||||
|
roleARN: {{ .Values.artifactRepository.s3.roleARN }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.artifactRepository.s3.useSDKCreds }}
|
||||||
|
useSDKCreds: {{ .Values.artifactRepository.s3.useSDKCreds }}
|
||||||
|
{{- end }}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
{{- if .Values.controller.metricsConfig.enabled }}
|
{{- if .Values.controller.metricsConfig.enabled }}
|
||||||
metricsConfig:
|
metricsConfig:
|
||||||
|
|
|
@ -200,6 +200,8 @@ artifactRepository:
|
||||||
# bucket:
|
# bucket:
|
||||||
# endpoint:
|
# endpoint:
|
||||||
# region:
|
# region:
|
||||||
|
# roleARN:
|
||||||
|
# useSDKCreds: true
|
||||||
|
|
||||||
# NOTE: These are setting attributes for the `minio` optional dependency
|
# NOTE: These are setting attributes for the `minio` optional dependency
|
||||||
minio:
|
minio:
|
||||||
|
|
Loading…
Reference in a new issue