Browse Source

Setup openshift-node on the masters so that the web console can access the pods

Wesley Hearn 9 years ago
parent
commit
8bdaac7f60

+ 1 - 0
playbooks/aws/openshift-cluster/config.yml

@@ -15,6 +15,7 @@
     g_nodes_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-node' }}"
     g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
     g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
+    g_nodeonmaster: true
     openshift_cluster_id: "{{ cluster_id }}"
     openshift_debug_level: 4
     openshift_deployment_type: "{{ deployment_type }}"

+ 9 - 0
playbooks/common/openshift-cluster/config.yml

@@ -39,6 +39,15 @@
       ansible_sudo: "{{ g_sudo | default(omit) }}"
     with_items: groups[g_nodes_group] | default([])
 
+  - name: Evaluate oo_nodes_to_config
+    add_host:
+      name: "{{ item }}"
+      groups: oo_nodes_to_config
+      ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
+      ansible_sudo: "{{ g_sudo | default(omit) }}"
+    with_items: groups[g_masters_group] | default([])
+    when: g_nodeonmaster is defined and g_nodeonmaster == true
+
   - name: Evaluate oo_first_etcd
     add_host:
       name: "{{ groups[g_etcd_group][0] }}"