From bf0e3e82a3eddfc6c7f9cc08e6388a44b8fe1557 Mon Sep 17 00:00:00 2001 From: Fleur Kelpin Date: Fri, 21 Sep 2018 13:49:57 +0200 Subject: [PATCH] chore: add forcePathStyle s3 property --- molgenis-vault/templates/backup-configmap.yaml | 3 +++ molgenis-vault/values.yaml | 9 +++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/molgenis-vault/templates/backup-configmap.yaml b/molgenis-vault/templates/backup-configmap.yaml index b812b61..37ce113 100644 --- a/molgenis-vault/templates/backup-configmap.yaml +++ b/molgenis-vault/templates/backup-configmap.yaml @@ -18,4 +18,7 @@ data: awsSecret: aws {{- if .Values.s3.endpoint }} endpoint: {{ .Values.s3.endpoint }} +{{- end }} +{{- if hasKey .Values.s3 "forcePathStyle" }} + forcePathStyle: {{ .Values.s3.forcePathStyle }} {{- end }} \ No newline at end of file diff --git a/molgenis-vault/values.yaml b/molgenis-vault/values.yaml index 2d7e9d7..a64bf9b 100644 --- a/molgenis-vault/values.yaml +++ b/molgenis-vault/values.yaml @@ -12,6 +12,9 @@ s3: region: us-east-1 # endpoint for the s3 storage endpoint: https://play.minio.io:9000 + # forcePathStyle if set to true forces requests to use path style + # (host/bucket instead of bucket.host) + forcePathStyle: true # bucket is the name of the bucket bucket: vault @@ -44,10 +47,12 @@ etcd-operator: tag: v0.9.2 backupOperator: image: - tag: v0.8.3 + repository: fdlk/etcd-operator + tag: latest restoreOperator: image: - tag: v0.8.3 + repository: fdlk/etcd-operator + tag: latest ui: name: "vault-ui"