Upgrade Calico on Kubernetes
About upgrading Calico
This page describes how to upgrade to v3.29 from Calico v3.15 or later. The procedure varies by datastore type and install method.
If you are using Calico in etcd mode on a Kubernetes cluster, we recommend upgrading to the Kubernetes API datastore as discussed here.
If you have installed Calico using the calico.yaml
manifest, we recommend upgrading to the Calico operator, as discussed here.
-
Upgrading an installation that uses manifests and the Kubernetes API datastore
-
Upgrading an installation that connects directly to an etcd datastore
Do not use older versions of calicoctl
after the upgrade.
This may result in unexpected behavior and data.
Upgrade OwnerReferences
If you do not use OwnerReferences on resources in the projectcalico.org/v3 API group, you can skip this section.
Starting in Calico v3.28, a change in the way UIDs are generated for projectcalico.org/v3 resources requires that you update any OwnerReferences that refer to projectcalico.org/v3 resources as an owner. After upgrade, the UID for all projectcalico.org/v3 resources will be changed, resulting in any owned resources being garbage collected by Kubernetes.
- Remove any OwnerReferences from resources in your cluster that have
apiGroup: projectcalico.org/v3
. - Perform the upgrade normally.
- Add new OwnerReferences to your resources referencing the new UID.
Upgrading an installation that was installed using helm
Prior to release v3.23, the Calico helm chart itself deployed the tigera-operator
namespace and required that the helm release was
installed in the default
namespace. Newer releases properly defer creation of the tigera-operator
namespace to the user and allow installation
of the chart into the tigera-operator
namespace.
When upgrading from a version of Calico v3.22 or lower to a version of Calico v3.23 or greater, you must complete the following steps to migrate ownership of the helm resources to the new chart location.
Upgrade from Calico versions prior to v3.23.0
-
Patch existing resources so that the new chart can assume ownership.
kubectl patch installation default --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch apiserver default --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch podsecuritypolicy tigera-operator --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch -n tigera-operator deployment tigera-operator --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch -n tigera-operator serviceaccount tigera-operator --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch clusterrole tigera-operator --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}'
kubectl patch clusterrolebinding tigera-operator tigera-operator --type=merge -p '{"metadata": {"annotations": {"meta.helm.sh/release-namespace": "tigera-operator"}}}' -
Apply the v3.29 CRDs:
kubectl apply --server-side --force-conflicts -f https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/operator-crds.yaml
-
Install the helm chart in the
tigera-operator
namespace.helm install calico projectcalico/tigera-operator --version v3.29.0 --namespace tigera-operator
-
Once the install has succeeded, you can delete any old releases in the
default
namespace.kubectl delete secret -n default -l name=calico,owner=helm --dry-run
The above command uses --dry-run to avoid making changes to your cluster. We recommend reviewing the output and then re-running the command without --dry-run to commit to the changes.
All other upgrades
-
Apply the v3.29 CRDs:
kubectl apply --server-side --force-conflicts -f https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/operator-crds.yaml
-
Run the helm upgrade:
helm upgrade calico projectcalico/tigera-operator
Upgrading an installation that uses the operator
-
Download the v3.29 operator manifest.
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/tigera-operator.yaml -O
-
Use the following command to initiate an upgrade.
kubectl apply --server-side --force-conflicts -f tigera-operator.yaml
Upgrading an installation that uses manifests and the Kubernetes API datastore
-
Download the v3.29 manifest that corresponds to your original installation method.
Calico for policy and networking
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/calico.yaml -o upgrade.yaml
Calico for policy and flannel for networking
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/canal.yaml -o upgrade.yaml
Calico for policy (advanced)
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/calico-policy-only.yaml -o upgrade.yaml
noteIf you manually modified the manifest, you must manually apply the same changes to the downloaded manifest.
-
Use the following command to initiate a rolling update.
kubectl apply --server-side --force-conflicts -f upgrade.yaml
-
Watch the status of the upgrade as follows.
watch kubectl get pods -n kube-system
Verify that the status of all Calico pods indicate
Running
.calico-node-hvvg8 2/2 Running 0 3m
calico-node-vm8kh 2/2 Running 0 3m
calico-node-w92wk 2/2 Running 0 3m -
Remove any existing
calicoctl
instances, install the newcalicoctl
and configure it to connect to your datastore. -
Use the following command to check the Calico version number.
calicoctl version
It should return a
Cluster Version
ofv3.29.x
. -
If you have enable application layer policy, follow the instructions below to complete your upgrade. Skip this if you are not using Istio with Calico.
-
If you were upgrading from a version of Calico prior to v3.14 and followed the pre-upgrade steps for host endpoints above, review traffic logs from the temporary policy, add any global network policies needed to allow traffic, and delete the temporary network policy allow-all-upgrade.
-
Congratulations! You have upgraded to Calico v3.29.
Upgrading an installation that uses an etcd datastore
-
Download the v3.29 manifest that corresponds to your original installation method.
Calico for policy and networking
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/calico-etcd.yaml -o upgrade.yaml
Calico for policy and flannel for networking
curl https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/canal-etcd.yaml -o upgrade.yaml
noteYou must manually apply the changes you made to the manifest during installation to the downloaded v3.29 manifest. At a minimum, you must set the
etcd_endpoints
value. -
Use the following command to initiate a rolling update.
kubectl apply --server-side --force-conflicts -f upgrade.yaml
-
Watch the status of the upgrade as follows.
watch kubectl get pods -n kube-system
Verify that the status of all Calico pods indicate
Running
.calico-kube-controllers-6d4b9d6b5b-wlkfj 1/1 Running 0 3m
calico-node-hvvg8 1/2 Running 0 3m
calico-node-vm8kh 1/2 Running 0 3m
calico-node-w92wk 1/2 Running 0 3mtipThe calico-node pods will report
1/2
in theREADY
column, as shown. -
Remove any existing
calicoctl
instances, install the newcalicoctl
and configure it to connect to your datastore. -
Use the following command to check the Calico version number.
calicoctl version
It should return a
Cluster Version
ofv3.29
. -
If you have enabled application layer policy, follow the instructions below to complete your upgrade. Skip this if you are not using Istio with Calico.
-
If you were upgrading from a version of Calico prior to v3.14 and followed the pre-upgrade steps for host endpoints above, review traffic logs from the temporary policy, add any global network policies needed to allow traffic, and delete the temporary network policy allow-all-upgrade.
-
Congratulations! You have upgraded to Calico v3.29.
Upgrading if you have Application Layer Policy enabled
Dikastes is versioned the same as the rest of Calico, but an upgraded calico-node
will still be able to work with a downlevel Dikastes
so that you will not lose data plane connectivity during the upgrade. Once calico-node
is upgraded, you can begin redeploying your service pods
with the updated version of Dikastes.
If you have enabled application layer policy, take the following steps to upgrade the Dikastes sidecars running in your application pods. Skip these steps if you are not using Istio with Calico.
-
Update the Istio sidecar injector template to use the new version of Dikastes. Replace
<your Istio version>
below with the full version string of your Istio install, for example1.4.2
.kubectl apply -f https://raw.githubusercontent.com/projectcalico/calico/v3.29.0/manifests/alp/istio-inject-configmap-<your Istio version>.yaml
-
Once the new template is in place, newly created pods use the upgraded version of Dikastes. Perform a rolling update of each of your service deployments to get them on the new version of Dikastes.
Migrating to auto host endpoints
In order to migrate existing all-interfaces host endpoints to Calico-managed auto host endpoints:
Add any labels on existing all-interfaces host endpoints to their corresponding Kubernetes nodes. Calico manages labels on automatic host endpoints by syncing labels from their nodes. Any labels on existing all-interfaces host endpoints should be added to their respective nodes. For example, if your existing all-interface host endpoint for node node1 has the label environment: dev, then you must add that same label to its node:
kubectl label node node1 environment=dev
Enable auto host endpoints by following the enable automatic host endpoints how-to guide. Note that automatic host endpoints are created with a profile attached that allows all traffic in the absence of network policy.
calicoctl patch kubecontrollersconfiguration default --patch ={"spec": {"controllers": {"node": {"hostEndpoint": {"autoCreate": "Enabled"}}}}}
Delete old all-interfaces host endpoints. You can distinguish host endpoints managed by Calico from others in several ways. First, automatic host endpoints have the label projectcalico.org/created-by: calico-kube-controllers. Secondly, automatic host endpoints' name have the suffix -auto-hep.
calicoctl delete hostendpoint <old_hostendpoint_name>