Explorar o código

Add ability to support custom api and console ports (#712)

* Add ability to support custom api and console ports

* Missed an ingress rule
Eric Sauer %!s(int64=7) %!d(string=hai) anos
pai
achega
074b3e5261
Modificáronse 1 ficheiros con 12 adicións e 4 borrados
  1. 12 4
      roles/openstack-stack/templates/heat_stack.yaml.j2

+ 12 - 4
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