main.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. - name: Install clients
  3. package: name={{ openshift_service_type }}-clients{{ openshift_pkg_version | default('') }} state=present
  4. when: not openshift_is_atomic | bool
  5. register: result
  6. until: result is succeeded
  7. - block:
  8. - name: Pull CLI Image (docker)
  9. docker_image:
  10. name: "{{ openshift_cli_image }}"
  11. when: not l_use_cli_atomic_image | bool
  12. - name: Pull CLI Image (atomic)
  13. command: >
  14. atomic pull --storage ostree {{ system_openshift_cli_image }}
  15. register: pull_result
  16. changed_when: "'Pulling layer' in pull_result.stdout"
  17. when: l_use_cli_atomic_image | bool
  18. # openshift_container_binary_sync is a custom module in lib_utils
  19. - name: Copy client binaries/symlinks out of CLI image for use on the host
  20. openshift_container_binary_sync:
  21. image: "{{ openshift_cli_image }}"
  22. backend: "{{ l_openshift_cli_image_backend }}"
  23. when: openshift_is_atomic | bool
  24. - name: Install bash completion for oc tools
  25. package: name=bash-completion state=present
  26. when: not openshift_is_atomic | bool
  27. register: result
  28. until: result is succeeded