main.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. - name: Detecting Operating System
  3. stat:
  4. path: /run/ostree-booted
  5. register: ostree_booted
  6. # Locally setup containerized facts for now
  7. - set_fact:
  8. l_is_atomic: "{{ ostree_booted.stat.exists }}"
  9. - set_fact:
  10. l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
  11. - name: Ensure PyYaml and yum-utils are installed
  12. package: name={{ item }} state=present
  13. with_items:
  14. - PyYAML
  15. - yum-utils
  16. when: not l_is_atomic | bool
  17. - name: Gather Cluster facts and set is_containerized if needed
  18. openshift_facts:
  19. role: common
  20. local_facts:
  21. debug_level: "{{ openshift_debug_level | default(2) }}"
  22. # TODO: Deprecate deployment_type in favor of openshift_deployment_type
  23. deployment_type: "{{ openshift_deployment_type | default(deployment_type) }}"
  24. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  25. cluster_id: "{{ openshift_cluster_id | default('default') }}"
  26. hostname: "{{ openshift_hostname | default(None) }}"
  27. ip: "{{ openshift_ip | default(None) }}"
  28. is_containerized: "{{ l_is_containerized | default(None) }}"
  29. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  30. public_ip: "{{ openshift_public_ip | default(None) }}"
  31. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  32. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  33. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  34. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  35. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  36. no_proxy_internal_hostnames: "{{ openshift_no_proxy_internal_hostnames | default(None) }}"
  37. sdn_network_plugin_name: "{{ os_sdn_network_plugin_name | default(None) }}"
  38. use_openshift_sdn: "{{ openshift_use_openshift_sdn | default(None) }}"
  39. - name: Set repoquery command
  40. set_fact:
  41. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"