Created
February 2, 2019 14:11
-
-
Save lwolf/883bf455252d5ffcbce71c628f781bbf to your computer and use it in GitHub Desktop.
flannel multiarch (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
| apiVersion: extensions/v1beta1 | |
| kind: DaemonSet | |
| metadata: | |
| name: kube-flannel-ds-arm64 | |
| namespace: kube-system | |
| ... | |
| spec: | |
| template: | |
| spec: | |
| ... | |
| nodeSelector: | |
| beta.kubernetes.io/os: linux | |
| beta.kubernetes.io/arch: arm64 | |
| ... | |
| containers: | |
| - name: kube-flannel | |
| image: {{ flannel_image_repo }}:{{ flannel_image_tag }}-arm64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment