github.com/kubeshop/testkube@v1.17.23/docs/docs/articles/upgrade.md (about) 1 # Upgrade Testkube 2 3 Upgrading Testkube will upgrade the cluster components. 4 5 There are two ways to upgrade Testkube: 6 7 ## Using Helm 8 9 :::note 10 By default, the namespace for the installation will be `testkube`. 11 To upgrade the `testkube` chart if it was installed into the default namespace: 12 13 ```sh 14 helm upgrade my-testkube kubeshop/testkube 15 ``` 16 17 And for a namespace other than `testkube`: 18 19 ```sh 20 helm upgrade --namespace namespace_name my-testkube kubeshop/testkube 21 ``` 22 ::: 23 24 ## Using Testkube's CLI 25 26 ```bash 27 testkube upgrade 28 ```