main.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - set_fact:
  3. l_use_crio_only: "{{ openshift_use_crio_only | default(false) }}"
  4. l_is_system_container_image: "{{ openshift_use_master_system_container | default(openshift_use_system_containers | default(false)) | bool }}"
  5. - set_fact:
  6. l_use_cli_atomic_image: "{{ l_use_crio_only or l_is_system_container_image }}"
  7. - name: Install clients
  8. package: name={{ openshift.common.service_type }}-clients state=present
  9. when: not openshift.common.is_containerized | bool
  10. - block:
  11. - name: Pull CLI Image
  12. command: >
  13. docker pull {{ openshift_cli_image }}:{{ openshift_image_tag }}
  14. register: pull_result
  15. changed_when: "'Downloaded newer image' in pull_result.stdout"
  16. - name: Copy client binaries/symlinks out of CLI image for use on the host
  17. openshift_container_binary_sync:
  18. image: "{{ openshift_cli_image }}"
  19. tag: "{{ openshift_image_tag }}"
  20. backend: "docker"
  21. when:
  22. - openshift.common.is_containerized | bool
  23. - not l_use_cli_atomic_image | bool
  24. - block:
  25. - name: Pull CLI Image
  26. command: >
  27. atomic pull --storage ostree {{ 'docker:' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}:{{ openshift_image_tag }}
  28. register: pull_result
  29. changed_when: "'Pulling layer' in pull_result.stdout"
  30. - name: Copy client binaries/symlinks out of CLI image for use on the host
  31. openshift_container_binary_sync:
  32. image: "{{ '' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}"
  33. tag: "{{ openshift_image_tag }}"
  34. backend: "atomic"
  35. when:
  36. - openshift.common.is_containerized | bool
  37. - l_use_cli_atomic_image | bool
  38. - name: Reload facts to pick up installed OpenShift version
  39. openshift_facts:
  40. - name: Install bash completion for oc tools
  41. package: name=bash-completion state=present
  42. when: not openshift.common.is_containerized | bool