chore: add forcePathStyle s3 property
This commit is contained in:
parent
5f542e7632
commit
bf0e3e82a3
|
@ -19,3 +19,6 @@ data:
|
||||||
{{- if .Values.s3.endpoint }}
|
{{- if .Values.s3.endpoint }}
|
||||||
endpoint: {{ .Values.s3.endpoint }}
|
endpoint: {{ .Values.s3.endpoint }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if hasKey .Values.s3 "forcePathStyle" }}
|
||||||
|
forcePathStyle: {{ .Values.s3.forcePathStyle }}
|
||||||
|
{{- end }}
|
|
@ -12,6 +12,9 @@ s3:
|
||||||
region: us-east-1
|
region: us-east-1
|
||||||
# endpoint for the s3 storage
|
# endpoint for the s3 storage
|
||||||
endpoint: https://play.minio.io:9000
|
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 is the name of the bucket
|
||||||
bucket: vault
|
bucket: vault
|
||||||
|
|
||||||
|
@ -44,10 +47,12 @@ etcd-operator:
|
||||||
tag: v0.9.2
|
tag: v0.9.2
|
||||||
backupOperator:
|
backupOperator:
|
||||||
image:
|
image:
|
||||||
tag: v0.8.3
|
repository: fdlk/etcd-operator
|
||||||
|
tag: latest
|
||||||
restoreOperator:
|
restoreOperator:
|
||||||
image:
|
image:
|
||||||
tag: v0.8.3
|
repository: fdlk/etcd-operator
|
||||||
|
tag: latest
|
||||||
|
|
||||||
ui:
|
ui:
|
||||||
name: "vault-ui"
|
name: "vault-ui"
|
||||||
|
|
Loading…
Reference in New Issue