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:
Stefan Sedich 2020-04-23 12:25:08 -07:00 committed by GitHub
parent ac44f2d7e1
commit 6c32fbac27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -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:

View file

@ -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:

View file

@ -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: