Created
February 1, 2021 18:07
-
-
Save mvisonneau/e46eaf5756d1146b7da839e3d077122d to your computer and use it in GitHub Desktop.
Compile kubernetes/dns/node-cache
This file contains hidden or 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
git clone https://github.com/kubernetes/dns.git | |
cd dns | |
git checkout 1.17.0 | |
make containers CONTAINER_BINARIES=node-cache | |
make containers CONTAINER_BINARIES=node-cache ARCH=arm64 | |
docker tag gcr.io/k8s-staging-dns/k8s-dns-node-cache-amd64:1.17.0 mvisonneau/k8s-dns-node-cache-amd64:1.17.0 | |
docker tag gcr.io/k8s-staging-dns/k8s-dns-node-cache-arm64:1.17.0 mvisonneau/k8s-dns-node-cache-arm64:1.17.0 | |
docker push mvisonneau/k8s-dns-node-cache-amd64:1.17.0 | |
docker push mvisonneau/k8s-dns-node-cache-arm64:1.17.0 | |
docker manifest create mvisonneau/k8s-dns-node-cache:1.17.0 \ | |
mvisonneau/k8s-dns-node-cache-amd64:1.17.0 \ | |
mvisonneau/k8s-dns-node-cache-arm64:1.17.0 | |
docker manifest push mvisonneau/k8s-dns-node-cache:1.17.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment