Browse Source

Use haproxy frontend port for os_firewall.

Andrew Butcher 9 years ago
parent
commit
670fc1cff4
2 changed files with 4 additions and 1 deletions
  1. 1 0
      playbooks/common/openshift-master/config.yml
  2. 3 1
      roles/haproxy/defaults/main.yml

+ 1 - 0
playbooks/common/openshift-master/config.yml

@@ -219,6 +219,7 @@
   hosts: oo_lb_to_config
   vars:
     sync_tmpdir: "{{ hostvars.localhost.g_master_mktemp.stdout }}"
+    haproxy_frontend_port: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_port }}"
     haproxy_frontends:
     - name: atomic-openshift-api
       mode: tcp

+ 3 - 1
roles/haproxy/defaults/main.yml

@@ -1,4 +1,6 @@
 ---
+haproxy_frontend_port: 80
+
 haproxy_frontends:
 - name: main
   binds:
@@ -18,4 +20,4 @@ os_firewall_allow:
 - service: haproxy stats
   port: "9000/tcp"
 - service: haproxy balance
-  port: "8443/tcp"
+  port: "{{ haproxy_frontend_port }}/tcp"