From e005415ad49ba47ebc1c77e5f325bb832d3fbc40 Mon Sep 17 00:00:00 2001 From: danehans Date: Thu, 6 Mar 2014 18:28:32 +0000 Subject: [PATCH] Changes Neutron Security Group Ports to Integers Previously, neutron security group tcp/udp port numbers were defined as strings. This was not an issue when testing with trunk but is an issue when testing with 2014.1.b2. 2014.1.b2 expects the parameters to be defined as integers not strings. When the tcp/udp ports are defined as integers, the security group rules work with trunk as well as 2014.1.b2. Change-Id: If7e5af163993b4cad3f31583ea73e9e856ab0ccb --- openshift-origin/F19/OpenShift.template | 36 ++++++++++++------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/openshift-origin/F19/OpenShift.template b/openshift-origin/F19/OpenShift.template index e6fc85ec..2d8c1e98 100644 --- a/openshift-origin/F19/OpenShift.template +++ b/openshift-origin/F19/OpenShift.template @@ -87,56 +87,56 @@ { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "22", - "port_range_max": "22" + "port_range_min": 22, + "port_range_max": 22 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", - "port_range_min": "53", - "port_range_max": "53" + "port_range_min": 53, + "port_range_max": 53 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "80", - "port_range_max": "80" + "port_range_min": 80, + "port_range_max": 80 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "443", - "port_range_max": "443" + "port_range_min": 443, + "port_range_max": 443 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "8443", - "port_range_max": "8443" + "port_range_min": 8443, + "port_range_max": 8443 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "8000", - "port_range_max": "8000" + "port_range_min": 8000, + "port_range_max": 8000 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "8161", - "port_range_max": "8161" + "port_range_min": 8161, + "port_range_max": 8161 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "8080", - "port_range_max": "8080" + "port_range_min": 8080, + "port_range_max": 8080 }, { "remote_ip_prefix": "0.0.0.0/0", "protocol": "tcp", - "port_range_min": "8161", - "port_range_max": "8161" + "port_range_min": 8161, + "port_range_max": 8161 } ] }