main.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 openshift_use_crio_only | 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: openshift_use_crio_only | 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
  29. # TODO(michaelgugino) Remove in 3.11.
  30. - name: Ensure binaries from containerized deployments are cleaned up.
  31. file:
  32. path: "{{ item }}"
  33. state: absent
  34. with_items:
  35. - /usr/local/bin/oc
  36. - /usr/local/bin/openshift
  37. - /usr/local/bin/kubectl
  38. when: not openshift_is_atomic