Created
February 2, 2019 14:16
-
-
Save lwolf/be57d953499bc75cb21229b379a4c54a to your computer and use it in GitHub Desktop.
fix hardcoded arch (https://blog.lwolf.org/post/how-to-deploy-multi-arch-kubernetes-cluster-using-kubespray/)
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
- hyperkube_download_url: "https://storage.googleapis.com/.../linux/amd64/hyperkube" | |
+ hyperkube_download_url: "https://storage.googleapis.com/.../linux/{{ image_arch }}/hyperkube" | |
- etcd_download_url: "https://github.com/coreos/.../etcd-{{ etcd_version }}-linux-amd64.tar.gz" | |
+ etcd_download_url: "https://github.com/coreos/.../etcd-{{ etcd_version }}-linux-{{ image_arch }}.tar.gz" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment