Explorar el Código

Add master-infra and all-in-one node-configs

Scott Dodson hace 6 años
padre
commit
41e4c8dc5b
Se han modificado 2 ficheros con 21 adiciones y 0 borrados
  1. 13 0
      README.md
  2. 8 0
      roles/openshift_facts/defaults/main.yml

+ 13 - 0
README.md

@@ -103,6 +103,11 @@ each node group defined in `openshift_node_groups` and they're named
 to note that the configmap is also the authoritative definition of node labels,
 to note that the configmap is also the authoritative definition of node labels,
 the old `openshift_node_labels` value is effectively ignored.
 the old `openshift_node_labels` value is effectively ignored.
 
 
+There are also two configmaps that label nodes into multiple roles, these are
+not recommended for production clusters, however they're named
+`node-config-all-in-one` and `node-config-master-infra` if you'd like to use
+them to deploy non production clusters.
+
 The default set of node groups is defined in
 The default set of node groups is defined in
 [roles/openshift_facts/defaults/main.yml] like so
 [roles/openshift_facts/defaults/main.yml] like so
 
 
@@ -120,6 +125,14 @@ openshift_node_groups:
     labels:
     labels:
       - 'node-role.kubernetes.io/compute=true'
       - 'node-role.kubernetes.io/compute=true'
     edits: []
     edits: []
+  - name: node-config-master-infra
+    labels:
+      - 'node-role.kubernetes.io/infra=true,node-role.kubernetes.io/master=true'
+    edits: []
+  - name: node-config-all-in-one
+    labels:
+      - 'node-role.kubernetes.io/infra=true,node-role.kubernetes.io/master=true,node-role.kubernetes.io/compute=true'
+    edits: []
 ```
 ```
 
 
 When configuring this in the INI based inventory this must be translated into a
 When configuring this in the INI based inventory this must be translated into a

+ 8 - 0
roles/openshift_facts/defaults/main.yml

@@ -130,4 +130,12 @@ openshift_node_groups:
     labels:
     labels:
       - 'node-role.kubernetes.io/compute=true'
       - 'node-role.kubernetes.io/compute=true'
     edits: []
     edits: []
+  - name: node-config-master-infra
+    labels:
+      - 'node-role.kubernetes.io/infra=true,node-role.kubernetes.io/master=true'
+    edits: []
+  - name: node-config-all-in-one
+    labels:
+      - 'node-role.kubernetes.io/infra=true,node-role.kubernetes.io/master=true,node-role.kubernetes.io/compute=true'
+    edits: []
 openshift_master_manage_htpasswd: True
 openshift_master_manage_htpasswd: True