Browse Source

add openshift_hostname workaround var

- use openshift_bind_ip for hostname when openshift_hostname_workaround is true
- defaults to true to maintain current behavior.
Jason DeTiberus 10 years ago
parent
commit
8fea5fec61

+ 4 - 0
roles/openshift_common/defaults/main.yml

@@ -1,3 +1,7 @@
 ---
 openshift_bind_ip: "{{ ansible_default_ipv4.address }}"
 openshift_debug_level: 0
+
+# TODO: Once openshift stops resolving hostnames for node queries remove
+# this...
+openshift_hostname_workaround: true

+ 1 - 0
roles/openshift_common/tasks/main.yml

@@ -2,6 +2,7 @@
 # fixme: Once openshift stops resolving hostnames for node queries remove this...
 - name: Set hostname to IP Addr (WORKAROUND)
   hostname: name={{ openshift_bind_ip }}
+  when: openshift_hostname_workaround
 
 - name: Configure local facts file
   file: path=/etc/ansible/facts.d/ state=directory mode=0750

+ 3 - 2
roles/openshift_master/tasks/main.yml

@@ -16,8 +16,9 @@
   lineinfile:
     dest: /etc/sysconfig/openshift-master
     regexp: '^OPTIONS='
-    line: "OPTIONS=\"--public-master={{ openshift_public_ip }} --nodes={{ openshift_node_ips
-          | join(',') }}  --loglevel={{ openshift_master_debug_level }}\""
+    line: "OPTIONS=\"--public-master={{ openshift_public_ip if
+          openshift_hostname_workaround else ansible_fqdn  }} --nodes={{ openshift_node_ips
+              | join(',') }}  --loglevel={{ openshift_master_debug_level }}\""
   notify:
   - restart openshift-master