config.yml 814 B

123456789101112131415
  1. ---
  2. - import_playbook: ../init/main.yml
  3. vars:
  4. # We need facts on all nodes since we need to check (on RPM installs) that
  5. # glusterfs-fuse is available across the cluster.
  6. l_init_fact_hosts: "oo_masters_to_config:oo_nodes_to_config"
  7. # We only want sanity and base packages on OpenShift nodes that will be
  8. # GlusterFS nodes, as they may be new nodes to the OpenShift cluster.
  9. l_glusterfs_nodes: "{{ groups['oo_nodes_to_config'] | intersect(groups['oo_glusterfs_to_config']) }}"
  10. l_openshift_version_set_hosts: "oo_masters_to_config:!oo_first_master"
  11. l_sanity_check_hosts: "{{ groups['oo_masters_to_config'] | union(l_glusterfs_nodes) }}"
  12. l_install_base_packages: True
  13. l_base_packages_hosts: "oo_nodes_to_config:&oo_glusterfs_to_config"
  14. - import_playbook: private/config.yml