main.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Verify Ansible version is greater than or equal to 1.9.4
  3. fail:
  4. msg: "Unsupported ansible version: {{ ansible_version }} found"
  5. when: not ansible_version.full | version_compare('1.9.4', 'ge')
  6. - name: Detecting Operating System
  7. stat:
  8. path: /run/ostree-booted
  9. register: ostree_booted
  10. # Locally setup containerized facts for now
  11. - set_fact:
  12. l_is_atomic: "{{ ostree_booted.stat.exists }}"
  13. - set_fact:
  14. l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
  15. - name: Ensure PyYaml is installed
  16. action: "{{ ansible_pkg_mgr }} name=PyYAML state=present"
  17. when: not l_is_atomic | bool
  18. - name: Ensure yum-utils is installed
  19. action: "{{ ansible_pkg_mgr }} name=yum-utils state=present"
  20. when: not l_is_atomic | bool
  21. - name: Gather Cluster facts and set is_containerized if needed
  22. openshift_facts:
  23. role: common
  24. local_facts:
  25. # TODO: Deprecate deployment_type in favor of openshift_deployment_type
  26. deployment_type: "{{ openshift_deployment_type | default(deployment_type) }}"
  27. cluster_id: "{{ openshift_cluster_id | default('default') }}"
  28. hostname: "{{ openshift_hostname | default(None) }}"
  29. ip: "{{ openshift_ip | default(None) }}"
  30. is_containerized: "{{ l_is_containerized | default(None) }}"
  31. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  32. public_ip: "{{ openshift_public_ip | default(None) }}"
  33. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  34. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  35. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  36. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  37. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  38. no_proxy_internal_hostnames: "{{ openshift_no_proxy_internal_hostnames | default(None) }}"
  39. version_requested: "{{ openshift_version | default(None) }}"