diff options
| author | gfhe <90042648+gfhe@users.noreply.github.com> | 2023-08-23 11:11:11 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-22 20:11:11 -0700 |
| commit | d7937f973812c7ae88c4a2a164ca71bc55802dc8 (patch) | |
| tree | 3a23fa3c358db7e8c8fcdacc4fbe5a1beabb7363 /k8s | |
| parent | a1149f060bbd2d37a92d2d9dec3208a22fcdac7c (diff) | |
| download | seaweedfs-d7937f973812c7ae88c4a2a164ca71bc55802dc8.tar.xz seaweedfs-d7937f973812c7ae88c4a2a164ca71bc55802dc8.zip | |
fix bugs: seaweedfs master ingress host configuration do not work (#4781)
fix bugs: seaweedfs hem charts ignore the master ingress configuration
Diffstat (limited to 'k8s')
| -rw-r--r-- | k8s/charts/seaweedfs/templates/ingress.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/k8s/charts/seaweedfs/templates/ingress.yaml b/k8s/charts/seaweedfs/templates/ingress.yaml index d14adf1f3..ab46253fd 100644 --- a/k8s/charts/seaweedfs/templates/ingress.yaml +++ b/k8s/charts/seaweedfs/templates/ingress.yaml @@ -52,7 +52,8 @@ metadata: spec: ingressClassName: {{ .Values.master.ingress.className | quote }} rules: - - http: + - host: {{ .Values.master.ingress.host }} + http: paths: - path: /sw-master/?(.*) pathType: ImplementationSpecific |
