diff options
| author | Naden <naden@mac.com> | 2022-12-21 12:24:54 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-20 17:24:54 -0800 |
| commit | 27d187eed9285af234e0eafbf97450080f91cb2d (patch) | |
| tree | 2767b15c2b149a8d6ea3fdcaf67cdb22a7a9455f | |
| parent | 3b90eb1911225523821bba85b5dbbc04d29cb9f1 (diff) | |
| download | seaweedfs-27d187eed9285af234e0eafbf97450080f91cb2d.tar.xz seaweedfs-27d187eed9285af234e0eafbf97450080f91cb2d.zip | |
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>
| -rw-r--r-- | k8s/helm_charts2/templates/s3-deployment.yaml | 1 | ||||
| -rw-r--r-- | k8s/helm_charts2/values.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/k8s/helm_charts2/templates/s3-deployment.yaml b/k8s/helm_charts2/templates/s3-deployment.yaml index 02b0e0046..c9e12e9cb 100644 --- a/k8s/helm_charts2/templates/s3-deployment.yaml +++ b/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 }} \ diff --git a/k8s/helm_charts2/values.yaml b/k8s/helm_charts2/values.yaml index 4feacc7bf..21d031eb5 100644 --- a/k8s/helm_charts2/values.yaml +++ b/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 |
