Created
June 28, 2024 02:08
-
-
Save oilbeater/d17a61f805fac83983d107708d2d06c4 to your computer and use it in GitHub Desktop.
release kube-ovn images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
docker manifest rm kubeovn/kube-ovn:${VERSION} | |
docker manifest rm kubeovn/vpc-nat-gateway:${VERSION} | |
docker pull kubeovn/kube-ovn:${VERSION}-x86 | |
docker pull kubeovn/kube-ovn:${VERSION}-arm | |
docker pull kubeovn/vpc-nat-gateway:${VERSION}-x86 | |
docker pull kubeovn/vpc-nat-gateway:${VERSION}-arm | |
docker manifest create kubeovn/kube-ovn:${VERSION} kubeovn/kube-ovn:${VERSION}-x86 kubeovn/kube-ovn:${VERSION}-arm | |
docker manifest create kubeovn/vpc-nat-gateway:${VERSION} kubeovn/vpc-nat-gateway:${VERSION}-x86 kubeovn/vpc-nat-gateway:${VERSION}-arm | |
docker manifest push kubeovn/kube-ovn:${VERSION} | |
docker manifest push kubeovn/vpc-nat-gateway:${VERSION} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment