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"
|
||||
description: A Helm chart for Argo Workflows
|
||||
name: argo
|
||||
version: 0.7.4
|
||||
version: 0.7.5
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
maintainers:
|
||||
|
|
|
@ -36,6 +36,9 @@ data:
|
|||
{{- if .Values.artifactRepository.s3.keyPrefix }}
|
||||
keyPrefix: {{ .Values.artifactRepository.s3.keyPrefix }}
|
||||
{{- end }}
|
||||
{{- if .Values.artifactRepository.s3.region }}
|
||||
region: {{ .Values.artifactRepository.s3.region }}
|
||||
{{- end }}
|
||||
{{- end}}
|
||||
{{- if .Values.controller.metricsConfig.enabled }}
|
||||
metricsConfig:
|
||||
|
|
|
@ -190,6 +190,7 @@ artifactRepository:
|
|||
insecure: true
|
||||
# bucket:
|
||||
# endpoint:
|
||||
# region:
|
||||
|
||||
# NOTE: These are setting attributes for the `minio` optional dependency
|
||||
minio:
|
||||
|
|
Loading…
Reference in a new issue