Browse Source

Merge pull request #9137 from abutcher/oo-nodes-to-bootstrap

Exclude masters from node list for CSR approval.
Scott Dodson 6 years ago
parent
commit
61bc1c2649
1 changed files with 5 additions and 1 deletions
  1. 5 1
      playbooks/init/evaluate_groups.yml

+ 5 - 1
playbooks/init/evaluate_groups.yml

@@ -146,7 +146,11 @@
       groups: oo_nodes_to_bootstrap
       ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
       ansible_become: "{{ g_sudo | default(omit) }}"
-    with_items: "{{ groups.oo_masters | default([]) }}"
+    with_items: "{{ g_new_master_hosts | default(g_master_hosts | default([], true), true) }}"
+    when:
+    # Add masters to oo_nodes_to_bootstrap when we are not scaling up.
+    # Add new masters to oo_nodes_to_bootstrap when we are scaling up masters.
+    - g_new_node_hosts | length == 0 or g_new_master_hosts | length > 0
     changed_when: no
 
   - name: Evaluate oo_lb_to_config