Browse Source

a-o-i: Automatically Label Nodes as Infra

In interactive mode, automatically label nodes as infrastructure nodes. Two cases are covered:

1) If all nodes are masters, all hosts are labeled infra
2) If dedicated nodes are defined, the first two (or one) nodes are labeled as infra
Samuel Munilla 8 years ago
parent
commit
c2074c0404
1 changed files with 11 additions and 0 deletions
  1. 11 0
      utils/src/ooinstall/cli_installer.py

+ 11 - 0
utils/src/ooinstall/cli_installer.py

@@ -613,6 +613,7 @@ https://docs.openshift.com/enterprise/latest/admin_guide/install/prerequisites.h
 
     if not oo_cfg.deployment.hosts:
         oo_cfg.deployment.hosts, roles = collect_hosts(oo_cfg)
+        set_infra_nodes(oo_cfg.deployment.hosts)
 
         for role in roles:
             oo_cfg.deployment.roles[role] = Role(name=role, variables={})
@@ -757,6 +758,16 @@ def get_hosts_to_run_on(oo_cfg, callback_facts, unattended, force, verbose):
 
     return hosts_to_run_on, callback_facts
 
+def set_infra_nodes(hosts):
+    if all(host.is_master() for host in hosts):
+        infra_list = hosts
+    else:
+        nodes_list = [host for host in hosts if host.is_node()]
+        infra_list = nodes_list[:2]
+
+    for host in infra_list:
+        host.node_labels = "{'region': 'infra'}"
+
 
 @click.group()
 @click.pass_context