Skip to content

Commit

Permalink
chore(kgo): add exemplary incantations of CRD upgrade commands
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek committed Oct 31, 2024
1 parent de968cd commit 6743b05
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions charts/gateway-operator/UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,20 @@ upgrade. Because Helm does not handle these updates, you must manually apply
them before upgrading your release.

[hip0011]: https://github.com/helm/community/blob/main/hips/hip-0011.md

For example, upgrading Kong's [kubernetes-configuration][kcfg] CRDs to v0.0.38 requires
running:

```
kustomize build github.com/Kong/kubernetes-configuration/config/crd\?rev\=v0.0.38 | kubectl apply -f -
```

[kcfg]: https://github.com/Kong/kubernetes-configuration

Upgrading [Gateway API][gwapi] to v1.2.0 requires running:

```
kustomize build github.com/kubernetes-sigs/gateway-api/config/crd\?ref=v1.2.0 | kubectl apply -f -
```

[gwapi]: https://github.com/kubernetes-sigs/gateway-api/

0 comments on commit 6743b05

Please sign in to comment.