2017-11-03 07:09:24 +00:00
|
|
|
---
|
|
|
|
- name: Helm | Compare host helm with hyperkube container
|
2017-11-29 19:52:54 +00:00
|
|
|
command: "{{ docker_bin_dir }}/docker run --rm -v {{ bin_dir }}:/systembindir --entrypoint /usr/bin/cmp {{ helm_image_repo }}:{{ helm_image_tag }} /usr/local/bin/helm /systembindir/helm"
|
2017-11-03 07:09:24 +00:00
|
|
|
register: helm_task_compare_result
|
|
|
|
until: helm_task_compare_result.rc in [0,1,2]
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
changed_when: false
|
|
|
|
failed_when: "helm_task_compare_result.rc not in [0,1,2]"
|
|
|
|
|
|
|
|
- name: Helm | Copy helm from helm container
|
2017-11-29 19:52:54 +00:00
|
|
|
command: "{{ docker_bin_dir }}/docker run --rm -v {{ bin_dir }}:/systembindir --entrypoint /bin/cp {{ helm_image_repo }}:{{ helm_image_tag }} -f /usr/local/bin/helm /systembindir/helm"
|
2017-11-03 07:09:24 +00:00
|
|
|
when: helm_task_compare_result.rc != 0
|
|
|
|
register: helm_task_result
|
|
|
|
until: helm_task_result.rc == 0
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
|
|
|
|
- name: Helm | Copy socat wrapper for Container Linux
|
|
|
|
command: "{{ docker_bin_dir }}/docker run --rm -v {{ bin_dir }}:/opt/bin {{ install_socat_image_repo }}:{{ install_socat_image_tag }}"
|
|
|
|
args:
|
|
|
|
creates: "{{ bin_dir }}/socat"
|
|
|
|
when: ansible_os_family in ['CoreOS', 'Container Linux by CoreOS']
|