Skip to content

Commit 857bf67

Browse files
committed
Add Upgrade note for 1.8
1 parent 2814181 commit 857bf67

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

charts/generic/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
Kool generic chart, you can deploy pretty much anything using this little guy.
44

55

6+
### Upgrading to 1.8
7+
8+
In 1.8, we've fixed a bug in the Deployment labels and selector labels. As a result, the `matchLabels` of the Deployment have changed. Unfortunately, `matchLabels` are immutable (see https://handbook.giantswarm.io/docs/dev-and-releng/app-developer-processes/matchlabels-are-immutable/), so to complete the upgrade, you need to delete the Deployment before proceeding.
9+
10+
To do this, run the following command:
11+
12+
```bash
13+
kubectl delete deployment --namespace={namespace} --selector=app.kubernetes.io/instance={release_name} --selector='!app.kubernetes.io/deployment'
14+
```
15+
616
### Upgrading to 1.4
717

818
Service signature has changed in order to support multiple ports in the same service:

0 commit comments

Comments
 (0)