Skip to content

Commit

Permalink
Merge pull request #5266 from mgfritch/enable-cilium-arm64-pkg-1.27
Browse files Browse the repository at this point in the history
[Release-1.27] Enable arm64 based images for calico, multus and harvester
  • Loading branch information
mgfritch authored Jan 13, 2024
2 parents 18da061 + b5a12d1 commit 21109bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/build-images
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ xargs -n1 -t docker image pull --quiet << EOF > build/images-canal.txt
${REGISTRY}/rancher/hardened-flannel:v0.23.0-build20231109
EOF

if [ "${GOARCH}" != "s390x" ] && [ "${GOARCH}" != "arm64" ]; then
if [ "${GOARCH}" != "s390x" ]; then
xargs -n1 -t docker image pull --quiet << EOF > build/images-cilium.txt
${REGISTRY}/rancher/mirrored-cilium-certgen:v0.1.9
${REGISTRY}/rancher/mirrored-cilium-cilium:v1.14.4
${REGISTRY}/rancher/mirrored-cilium-cilium-envoy:v1.26.6-ff0d5d3f77d610040e93c7c7a430d61a0c0b90c1
${REGISTRY}/rancher/mirrored-cilium-cilium-etcd-operator:v2.0.7
${REGISTRY}/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.4
${REGISTRY}/rancher/mirrored-cilium-hubble-relay:v1.14.4
${REGISTRY}/rancher/mirrored-cilium-hubble-ui:v0.12.1
Expand All @@ -61,6 +60,7 @@ xargs -n1 -t docker image pull --quiet << EOF > build/images-calico.txt
${REGISTRY}/rancher/mirrored-calico-apiserver:v3.26.3
EOF

if [ "${GOARCH}" != "arm64" ]; then
xargs -n1 -t docker image pull --quiet << EOF > build/images-vsphere.txt
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.26.1
${REGISTRY}/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.0.1
Expand All @@ -71,6 +71,7 @@ xargs -n1 -t docker image pull --quiet << EOF > build/images-vsphere.txt
${REGISTRY}/rancher/mirrored-sig-storage-csi-attacher:v4.2.0
${REGISTRY}/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0
EOF
fi

xargs -n1 -t docker image pull --quiet << EOF > build/images-multus.txt
${REGISTRY}/rancher/hardened-multus-cni:v4.0.2-build20231009
Expand Down

0 comments on commit 21109bc

Please sign in to comment.