1234567891011121314151617181920212223242526272829303132 |
- ---
- - name: Install clients
- package: name={{ openshift_service_type }}-clients{{ openshift_pkg_version | default('') }} state=present
- when: not openshift_is_atomic | bool
- register: result
- until: result is succeeded
- - block:
- - name: Pull CLI Image (docker)
- docker_image:
- name: "{{ openshift_cli_image }}"
- when: not l_use_cli_atomic_image | bool
- - name: Pull CLI Image (atomic)
- command: >
- atomic pull --storage ostree {{ system_openshift_cli_image }}
- register: pull_result
- changed_when: "'Pulling layer' in pull_result.stdout"
- when: l_use_cli_atomic_image | bool
- # openshift_container_binary_sync is a custom module in lib_utils
- - name: Copy client binaries/symlinks out of CLI image for use on the host
- openshift_container_binary_sync:
- image: "{{ openshift_cli_image }}"
- backend: "{{ l_openshift_cli_image_backend }}"
- when: openshift_is_atomic | bool
- - name: Install bash completion for oc tools
- package: name=bash-completion state=present
- when: not openshift_is_atomic | bool
- register: result
- until: result is succeeded
|