Merge pull request #490 from kubespray/fix_hyperkube_cni_decision

Fix logic handling for use_hyperkube_cni
This commit is contained in:
Smaine Kahlouch 2016-09-15 15:35:00 +02:00 committed by GitHub
commit 76c43f62e2

View file

@ -36,12 +36,12 @@
- name: Calico | Install calico cni bin
command: rsync -piu "{{ local_release_dir }}/calico/bin/calico" "/opt/cni/bin/calico"
changed_when: false
when: not use_hyperkube_cni
when: use_hyperkube_cni|bool == false
- name: Calico | Install calico-ipam cni bin
command: rsync -piu "{{ local_release_dir }}/calico/bin/calico" "/opt/cni/bin/calico-ipam"
changed_when: false
when: not use_hyperkube_cni
when: use_hyperkube_cni|bool == false
- name: Calico | Copy cni plugins from hyperkube
command: "/usr/bin/docker run --rm -v /opt/cni/bin:/cnibindir {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} /bin/cp -r /opt/cni/bin/. /cnibindir/"