File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ draft: false
5
5
weight : 70
6
6
---
7
7
8
- Once PGO v5.0.x has been installed with Helm, it can then be upgraded using the ` helm upgrade ` command.
8
+ Once PGO v5 has been installed with Helm, it can then be upgraded using the ` helm upgrade ` command.
9
9
However, before running the ` upgrade ` command, any CustomResourceDefinitions (CRDs) must first be
10
10
manually updated (this is specifically due to a [ design decision in Helm v3] [ helm-crd-limits ] ,
11
11
in which any CRDs in the Helm chart are only applied when using the ` helm install ` command).
@@ -33,3 +33,5 @@ Then, perform the upgrade using Helm:
33
33
``` shell
34
34
helm upgrade < name> -n < namespace> helm/install
35
35
```
36
+ PGO versions earlier than v5.4.0 include a pgo-upgrade deployment. When upgrading to v5.4.x, users
37
+ should expect the pgo-upgrade deployment to be deleted automatically.
Original file line number Diff line number Diff line change @@ -5,6 +5,21 @@ draft: false
5
5
weight : 50
6
6
---
7
7
8
+ ## Upgrading to v5.4.0 from v5.3.x
9
+
10
+ Apply the new version of the Kubernetes installer:
11
+
12
+ ``` bash
13
+ kubectl apply --server-side -k kustomize/install/default
14
+ ```
15
+
16
+ PGO versions from 5.1.x through 5.3.x include a pgo-upgrade deployment, which
17
+ is no longer needed after upgrading to v5.4.x. Delete the deployment:
18
+
19
+ ``` bash
20
+ kubectl delete deployment pgo-upgrade
21
+ ```
22
+
8
23
## Upgrading from PGO v5.0.0 Using Kustomize
9
24
10
25
Starting with PGO v5.0.1, both the Deployment and ServiceAccount created when installing PGO via
You can’t perform that action at this time.
0 commit comments