diff options
| author | David Jansen <39294842+dajsn@users.noreply.github.com> | 2025-09-05 19:16:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-05 10:16:22 -0700 |
| commit | 63f4bc64a3f032a436ff54c0f688ce99bb147c63 (patch) | |
| tree | 122807f487683982a282c067cbe5f3d1a2acb000 /k8s | |
| parent | 0ac3c654801e63bdf4b9284b811fd98347987ffc (diff) | |
| download | seaweedfs-63f4bc64a3f032a436ff54c0f688ce99bb147c63.tar.xz seaweedfs-63f4bc64a3f032a436ff54c0f688ce99bb147c63.zip | |
fix: helm chart with COSI deployment enabled breaks on helm upgrade (#7201)
the `helm.sh/chart` line with the changing version number breaks helm upgrades to due to `matchLabels` being immutable.
drop the offending line as it does not belong into the `matchLabels`
Diffstat (limited to 'k8s')
| -rw-r--r-- | k8s/charts/seaweedfs/templates/cosi/cosi-deployment.yaml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/k8s/charts/seaweedfs/templates/cosi/cosi-deployment.yaml b/k8s/charts/seaweedfs/templates/cosi/cosi-deployment.yaml index b200c89ae..813af850d 100644 --- a/k8s/charts/seaweedfs/templates/cosi/cosi-deployment.yaml +++ b/k8s/charts/seaweedfs/templates/cosi/cosi-deployment.yaml @@ -15,7 +15,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: objectstorage-provisioner template: |
