feat: add support for setting s3 region for artifact repository (#286)
* feat: add support for setting s3 region for artifact repository * Bump chart version
This commit is contained in:
parent
ac44f2d7e1
commit
6c32fbac27
3 changed files with 5 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "v2.6.1"
|
appVersion: "v2.6.1"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.7.4
|
version: 0.7.5
|
||||||
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:
|
||||||
|
|
|
@ -36,6 +36,9 @@ data:
|
||||||
{{- if .Values.artifactRepository.s3.keyPrefix }}
|
{{- if .Values.artifactRepository.s3.keyPrefix }}
|
||||||
keyPrefix: {{ .Values.artifactRepository.s3.keyPrefix }}
|
keyPrefix: {{ .Values.artifactRepository.s3.keyPrefix }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.artifactRepository.s3.region }}
|
||||||
|
region: {{ .Values.artifactRepository.s3.region }}
|
||||||
|
{{- end }}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
{{- if .Values.controller.metricsConfig.enabled }}
|
{{- if .Values.controller.metricsConfig.enabled }}
|
||||||
metricsConfig:
|
metricsConfig:
|
||||||
|
|
|
@ -190,6 +190,7 @@ artifactRepository:
|
||||||
insecure: true
|
insecure: true
|
||||||
# bucket:
|
# bucket:
|
||||||
# endpoint:
|
# endpoint:
|
||||||
|
# region:
|
||||||
|
|
||||||
# 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