istio.io/istio@v0.0.0-20240520182934-d79c90f27776/prow/config/calico.md (about) 1 The calico.yaml file is from [https://raw.githubusercontent.com/projectcalico/calico/v3.27.0/manifests/calico.yaml](https://raw.githubusercontent.com/projectcalico/calico/v3.27.0/manifests/calico.yaml) 2 3 Once downloaded, run the following sed command to replace the default docker.io images with istio-testing's copies of them: 4 5 ```shell 6 sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml 7 ``` 8 9 In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following: 10 11 ```shell 12 export VERSION=v3.27.0 13 14 crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}" 15 crane cp {docker.io,gcr.io/istio-testing}/calico/node:"${VERSION}" 16 crane cp {docker.io,gcr.io/istio-testing}/calico/kube-controllers:"${VERSION}" 17 ```