Skip to content

Commit b0b4960

Browse files
Murali Reddyrohityadavcloud
authored andcommitted
CLOUDSTACK-9688: Fix VR smoke test failure in vpc_vpn
The test_vpc_vpn uses a cidr that overlaps with the base test environment's CIDR causing intermittent failure. This changes the cidr to not overlap with underlying infra and avoid future failures. Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> (cherry picked from commit b25bb10) Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent cae081d commit b0b4960

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/integration/smoke/test_vpc_vpn.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def __init__(self):
168168
"vpc2": {
169169
"name": "TestVPC",
170170
"displaytext": "VPC2",
171-
"cidr": '10.2.0.0/16'
171+
"cidr": '10.3.0.0/16'
172172
},
173173
"network_1": {
174174
"name": "Test Network",
@@ -180,13 +180,13 @@ def __init__(self):
180180
"name": "Test Network",
181181
"displaytext": "Test Network",
182182
"netmask": '255.255.255.0',
183-
"gateway": "10.2.1.1"
183+
"gateway": "10.3.1.1"
184184
},
185185
"vpn": {
186186
"vpn_user": "root",
187187
"vpn_pass": "Md1s#dc",
188188
"vpn_pass_fail": "abc!123", # too short
189-
"iprange": "10.2.2.1-10.2.2.10",
189+
"iprange": "10.3.2.1-10.3.2.10",
190190
"fordisplay": "true"
191191
},
192192
"vpncustomergateway": {

0 commit comments

Comments
 (0)