Browse Source

Fixes 4074: S3 Gateway fails to start when installed via Helm (#4075)

Fixes #4074: S3 Gateway fails to start when installed via Helm

Co-authored-by: Naden <naden@harana.com>
pull/4082/head
Naden 2 years ago
committed by GitHub
parent
commit
27d187eed9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      k8s/helm_charts2/templates/s3-deployment.yaml
  2. 1
      k8s/helm_charts2/values.yaml

1
k8s/helm_charts2/templates/s3-deployment.yaml

@ -79,6 +79,7 @@ spec:
-v={{ .Values.global.loggingLevel }} \
{{- end }}
s3 \
-ip.bind={{ .Values.s3.bindAddress }} \
-port={{ .Values.s3.port }} \
{{- if .Values.s3.metricsPort }}
-metricsPort {{ .Values.s3.metricsPort }} \

1
k8s/helm_charts2/values.yaml

@ -426,6 +426,7 @@ s3:
imageTag: null
restartPolicy: null
replicas: 1
bindAddress: 0.0.0.0
port: 8333
metricsPort: 9327
loggingOverrideLevel: null

Loading…
Cancel
Save