main.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. register: result
  11. until: result | success
  12. - block:
  13. - name: Pull CLI Image
  14. command: >
  15. docker pull {{ openshift_cli_image }}:{{ openshift_image_tag }}
  16. register: pull_result
  17. changed_when: "'Downloaded newer image' in pull_result.stdout"
  18. - name: Copy client binaries/symlinks out of CLI image for use on the host
  19. openshift_container_binary_sync:
  20. image: "{{ openshift_cli_image }}"
  21. tag: "{{ openshift_image_tag }}"
  22. backend: "docker"
  23. when:
  24. - openshift.common.is_containerized | bool
  25. - not l_use_cli_atomic_image | bool
  26. - block:
  27. - name: Pull CLI Image
  28. command: >
  29. atomic pull --storage ostree {{ 'docker:' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}:{{ openshift_image_tag }}
  30. register: pull_result
  31. changed_when: "'Pulling layer' in pull_result.stdout"
  32. - name: Copy client binaries/symlinks out of CLI image for use on the host
  33. openshift_container_binary_sync:
  34. image: "{{ '' if system_images_registry == 'docker' else system_images_registry + '/' }}{{ openshift_cli_image }}"
  35. tag: "{{ openshift_image_tag }}"
  36. backend: "atomic"
  37. when:
  38. - openshift.common.is_containerized | bool
  39. - l_use_cli_atomic_image | bool
  40. - name: Reload facts to pick up installed OpenShift version
  41. openshift_facts:
  42. - name: Install bash completion for oc tools
  43. package: name=bash-completion state=present
  44. when: not openshift.common.is_containerized | bool
  45. register: result
  46. until: result | success