main.yml 873 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Install clients
  3. package: name={{ openshift.common.service_type }}-clients state=present
  4. when: not openshift.common.is_containerized | bool
  5. - name: Pull CLI Image
  6. command: >
  7. docker pull {{ openshift.common.cli_image }}:{{ openshift_image_tag }}
  8. register: pull_result
  9. changed_when: "'Downloaded newer image' in pull_result.stdout"
  10. when: openshift.common.is_containerized | bool
  11. - name: Copy client binaries/symlinks out of CLI image for use on the host
  12. openshift_container_binary_sync:
  13. image: "{{ openshift.common.cli_image }}"
  14. tag: "{{ openshift_image_tag }}"
  15. when: openshift.common.is_containerized | bool
  16. - name: Reload facts to pick up installed OpenShift version
  17. openshift_facts:
  18. - name: Install bash completion for oc tools
  19. package: name=bash-completion state=present
  20. when: not openshift.common.is_containerized | bool