main.yml 1.1 KB

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