Change the dashboard image in k8s from amd64 to arm64 on arm platform.
In extra-vars-aarch64.yml, add the dashboard image tag for supporting the
arm64 arch.
For heapster images, add a "sed" command in main.yml for replacing
the cpu architecture from amd64 to arm64.
And it will be invoked only when deploying the arm platform.
Change-Id: I584485f0356dcb925814f63cbc45ecbd459715bb
Signed-off-by: Jingzhao Ni <jingzhao.ni@arm.com>
dnsmasq_sidecar_image_repo: "gcr.io/google_containers/k8s-dns-sidecar-arm64"
kubednsautoscaler_image_repo: "gcr.io/google_containers/\
cluster-proportional-autoscaler-arm64"
+dashboard_image_repo: "gcr.io/google_containers/kubernetes-dashboard-arm64"
# inventory/group_vars/k8s-cluster.yml
kube_network_plugin: flannel
- heapster.enabled
- inventory_hostname == groups['kube_master'][0]
+- name: replace the cpu architecture for aarch64
+ shell: |
+ cd "{{ local_release_dir }}/heapster/heapster-{{ heapster.version }}/deploy/";
+ find ./kube-config -name "*.yaml" -exec sed -i "s/amd64/arm64/g" {} \;
+ when:
+ - heapster.enabled
+ - inventory_hostname == groups['kube_master'][0]
+ - ansible_architecture == "aarch64"
+
- name: install the heapster
shell: |
cd "{{ local_release_dir }}/heapster/heapster-{{ heapster.version }}/deploy/";