Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable arm64 based images for calico, multus and harvester #5154

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 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 Down
Loading