Browse Source

Fix(k8s-chart-helm): `helm upgrade` statefulset error (#5207)

pull/5209/head
Sébastien 11 months ago
committed by GitHub
parent
commit
53be97d5be
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      k8s/charts/seaweedfs/templates/filer-statefulset.yaml
  2. 1
      k8s/charts/seaweedfs/templates/master-statefulset.yaml
  3. 1
      k8s/charts/seaweedfs/templates/volume-statefulset.yaml

1
k8s/charts/seaweedfs/templates/filer-statefulset.yaml

@ -23,7 +23,6 @@ spec:
selector:
matchLabels:
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/component: filer
template:

1
k8s/charts/seaweedfs/templates/master-statefulset.yaml

@ -22,7 +22,6 @@ spec:
selector:
matchLabels:
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/component: master
template:

1
k8s/charts/seaweedfs/templates/volume-statefulset.yaml

@ -16,7 +16,6 @@ spec:
selector:
matchLabels:
app.kubernetes.io/name: {{ template "seaweedfs.name" . }}
helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/component: volume
template:

Loading…
Cancel
Save