|
@@ -13,8 +13,18 @@
|
|
|
when:
|
|
|
- g_new_node_hosts | default([]) | length == 0
|
|
|
|
|
|
-# Need a better way to do the above check for node without
|
|
|
-# running evaluate_groups and init/main.yml
|
|
|
-- import_playbook: ../init/main.yml
|
|
|
+# if g_new_node_hosts is not empty, oo_nodes_to_config will be set to
|
|
|
+# g_new_node_hosts via evaluate_groups.yml
|
|
|
+
|
|
|
+- import_playbook: ../prerequisites.yml
|
|
|
+ vars:
|
|
|
+ l_scale_up_hosts: "oo_nodes_to_config"
|
|
|
+ l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_config"
|
|
|
+ l_sanity_check_hosts: "{{ groups['oo_nodes_to_config'] | union(groups['oo_masters_to_config']) }}"
|
|
|
+
|
|
|
+- import_playbook: ../init/version.yml
|
|
|
+ vars:
|
|
|
+ l_openshift_version_set_hosts: "oo_nodes_to_config:!oo_first_master"
|
|
|
+ l_openshift_version_check_hosts: "oo_nodes_to_config"
|
|
|
|
|
|
- import_playbook: private/config.yml
|