From 074b3e526123da7a62c3d939859389c5f2a357b2 Mon Sep 17 00:00:00 2001 From: Eric Sauer Date: Tue, 12 Sep 2017 11:54:35 -0400 Subject: Add ability to support custom api and console ports (#712) * Add ability to support custom api and console ports * Missed an ingress rule --- roles/openstack-stack/templates/heat_stack.yaml.j2 | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'roles') diff --git a/roles/openstack-stack/templates/heat_stack.yaml.j2 b/roles/openstack-stack/templates/heat_stack.yaml.j2 index b6b5e3613..1abc67207 100644 --- a/roles/openstack-stack/templates/heat_stack.yaml.j2 +++ b/roles/openstack-stack/templates/heat_stack.yaml.j2 @@ -193,8 +193,12 @@ resources: port_range_max: 4001 - direction: ingress protocol: tcp - port_range_min: 8443 - port_range_max: 8444 + port_range_min: {{ openshift_master_api_port|default(8443) }} + port_range_max: {{ openshift_master_api_port|default(8443) }} + - direction: ingress + protocol: tcp + port_range_min: {{ openshift_master_console_port|default(8443) }} + port_range_max: {{ openshift_master_console_port|default(8443) }} - direction: ingress protocol: tcp port_range_min: 8053 @@ -284,8 +288,12 @@ resources: port_range_max: 4001 - direction: ingress protocol: tcp - port_range_min: 8443 - port_range_max: 8444 + port_range_min: {{ openshift_master_api_port|default(8443) }} + port_range_max: {{ openshift_master_api_port|default(8443) }} + - direction: ingress + protocol: tcp + port_range_min: {{ openshift_master_console_port|default(8443) }} + port_range_max: {{ openshift_master_console_port|default(8443) }} - direction: ingress protocol: tcp port_range_min: 8053 -- cgit v1.2.3