From 9e472ab99f7348c39cf54603efae6626945ec72e Mon Sep 17 00:00:00 2001 From: Venkat Date: Wed, 4 Dec 2024 16:55:07 +0000 Subject: [PATCH 1/2] fix: docs for upgrades to include CRD upgrade notes --- charts/tigera-operator/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/tigera-operator/README.md b/charts/tigera-operator/README.md index 86a28a2f70d..70aa3ed4479 100644 --- a/charts/tigera-operator/README.md +++ b/charts/tigera-operator/README.md @@ -76,6 +76,12 @@ ownership of the helm resources to the new chart location. ## All other upgrades +1. Upgrade CRDs: + + ```bash + kubectl apply --server-side --force-conflicts -f https://raw.githubusercontent.com/projectcalico/calico/{{site.data.versions[0].title}}/manifests/operator-crds.yaml + ``` + 1. Run the helm upgrade: ```bash From 243a014c5e8b6e60e1694a8830d6b03509d60a1e Mon Sep 17 00:00:00 2001 From: Venkat Date: Fri, 6 Dec 2024 06:22:44 +0000 Subject: [PATCH 2/2] docs: fix CRD upgrade instructions to use specific version instead of template value --- charts/tigera-operator/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/tigera-operator/README.md b/charts/tigera-operator/README.md index 70aa3ed4479..c811d520441 100644 --- a/charts/tigera-operator/README.md +++ b/charts/tigera-operator/README.md @@ -79,7 +79,7 @@ ownership of the helm resources to the new chart location. 1. Upgrade CRDs: ```bash - kubectl apply --server-side --force-conflicts -f https://raw.githubusercontent.com/projectcalico/calico/{{site.data.versions[0].title}}/manifests/operator-crds.yaml + kubectl apply --server-side --force-conflicts -f https://raw.githubusercontent.com/projectcalico/calico/v3.28.2/manifests/operator-crds.yaml ``` 1. Run the helm upgrade: