1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- ---
- - name: Install clients
- package: name={{ openshift.common.service_type }}-clients state=present
- when: not openshift.common.is_containerized | bool
- register: result
- until: result | success
- - block:
- - name: Pull CLI Image
- command: >
- docker pull {{ openshift_cli_image }}:{{ openshift_image_tag }}
- register: pull_result
- changed_when: "'Downloaded newer image' in pull_result.stdout"
- - name: Copy client binaries/symlinks out of CLI image for use on the host
- openshift_container_binary_sync:
- image: "{{ openshift_cli_image }}"
- tag: "{{ openshift_image_tag }}"
- backend: "docker"
- when:
- - openshift.common.is_containerized | bool
- - not l_use_cli_atomic_image | bool
- - block:
- - name: Pull CLI Image
- command: >
- atomic pull --storage ostree {{ 'docker:' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}:{{ openshift_image_tag }}
- register: pull_result
- changed_when: "'Pulling layer' in pull_result.stdout"
- - name: Copy client binaries/symlinks out of CLI image for use on the host
- openshift_container_binary_sync:
- image: "{{ '' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}"
- tag: "{{ openshift_image_tag }}"
- backend: "atomic"
- when:
- - openshift.common.is_containerized | bool
- - l_use_cli_atomic_image | bool
- - name: Reload facts to pick up installed OpenShift version
- openshift_facts:
- - name: Install bash completion for oc tools
- package: name=bash-completion state=present
- when: not openshift.common.is_containerized | bool
- register: result
- until: result | success
|