helm: Fix annotations parameters to be standard maps (#5543)
This commit is contained in:
@@ -2,4 +2,4 @@ apiVersion: v1
|
|||||||
description: SeaweedFS
|
description: SeaweedFS
|
||||||
name: seaweedfs
|
name: seaweedfs
|
||||||
appVersion: "3.65"
|
appVersion: "3.65"
|
||||||
version: 3.65.0
|
version: 3.65.1
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
name: ingress-{{ template "seaweedfs.name" . }}-filer
|
name: ingress-{{ template "seaweedfs.name" . }}-filer
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
{{- if .Values.filer.ingress.annotations }}
|
{{- with .Values.filer.ingress.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{ tpl .Values.filer.ingress.annotations . | nindent 4 | trim }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
||||||
@@ -11,9 +11,9 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
name: ingress-{{ template "seaweedfs.name" . }}-master
|
name: ingress-{{ template "seaweedfs.name" . }}-master
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
{{- if .Values.master.ingress.annotations }}
|
{{- with .Values.master.ingress.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{ tpl .Values.master.ingress.annotations . | nindent 4 | trim }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
name: ingress-{{ template "seaweedfs.name" . }}-s3
|
name: ingress-{{ template "seaweedfs.name" . }}-s3
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
{{- if .Values.s3.ingress.annotations }}
|
{{- with .Values.s3.ingress.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- tpl .Values.s3.ingress.annotations . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ master:
|
|||||||
className: "nginx"
|
className: "nginx"
|
||||||
# host: false for "*" hostname
|
# host: false for "*" hostname
|
||||||
host: "master.seaweedfs.local"
|
host: "master.seaweedfs.local"
|
||||||
annotations: |
|
annotations:
|
||||||
nginx.ingress.kubernetes.io/auth-type: "basic"
|
nginx.ingress.kubernetes.io/auth-type: "basic"
|
||||||
nginx.ingress.kubernetes.io/auth-secret: "default/ingress-basic-auth-secret"
|
nginx.ingress.kubernetes.io/auth-secret: "default/ingress-basic-auth-secret"
|
||||||
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required - SW-Master'
|
nginx.ingress.kubernetes.io/auth-realm: 'Authentication Required - SW-Master'
|
||||||
@@ -540,7 +540,7 @@ filer:
|
|||||||
className: "nginx"
|
className: "nginx"
|
||||||
# host: false for "*" hostname
|
# host: false for "*" hostname
|
||||||
host: "seaweedfs.cluster.local"
|
host: "seaweedfs.cluster.local"
|
||||||
annotations: |
|
annotations:
|
||||||
nginx.ingress.kubernetes.io/backend-protocol: GRPC
|
nginx.ingress.kubernetes.io/backend-protocol: GRPC
|
||||||
nginx.ingress.kubernetes.io/auth-type: "basic"
|
nginx.ingress.kubernetes.io/auth-type: "basic"
|
||||||
nginx.ingress.kubernetes.io/auth-secret: "default/ingress-basic-auth-secret"
|
nginx.ingress.kubernetes.io/auth-secret: "default/ingress-basic-auth-secret"
|
||||||
@@ -746,7 +746,7 @@ s3:
|
|||||||
# host: false for "*" hostname
|
# host: false for "*" hostname
|
||||||
host: "seaweedfs.cluster.local"
|
host: "seaweedfs.cluster.local"
|
||||||
# additional ingress annotations for the s3 endpoint
|
# additional ingress annotations for the s3 endpoint
|
||||||
annotations: ""
|
annotations: {}
|
||||||
tls: []
|
tls: []
|
||||||
|
|
||||||
certificates:
|
certificates:
|
||||||
|
|||||||
Reference in New Issue
Block a user