-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathtest_helper.go
63 lines (61 loc) · 1.79 KB
/
test_helper.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Tencent is pleased to support the open source community by making TKEStack available.
*
* Copyright (C) 2012-2019 Tencent. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* https://opensource.org/licenses/Apache-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package utils
const (
TestConfig = `{
"floatingips": [{
"routableSubnet": "10.49.27.0/24",
"ips": ["10.49.27.205", "10.49.27.216~10.49.27.218"],
"subnet": "10.49.27.0/24",
"gateway": "10.49.27.1",
"vlan": 2
}, {
"routableSubnet": "10.173.13.0/24",
"ips": ["10.173.13.2", "10.173.13.10~10.173.13.13", "10.173.13.15"],
"subnet": "10.173.13.0/24",
"gateway": "10.173.13.1",
"vlan": 2
}, {
"routableSubnet": "10.180.1.2/32",
"ips": ["10.180.154.2~10.180.154.3"],
"subnet": "10.180.154.0/24",
"gateway": "10.180.154.1",
"vlan": 3
}, {
"routableSubnet": "10.180.1.3/32",
"ips": ["10.180.154.7~10.180.154.8"],
"subnet": "10.180.154.0/24",
"gateway": "10.180.154.1",
"vlan": 3
}, {
"nodeSubnets": ["10.0.1.2/24", "10.0.2.2/24"],
"ips": ["10.0.70.2~10.0.70.20"],
"subnet": "10.0.70.0/24",
"gateway": "10.0.70.1"
}, {
"nodeSubnets": ["10.49.28.0/26", "10.49.29.0/24"],
"ips": ["10.0.80.2~10.0.80.4"],
"subnet": "10.0.80.0/24",
"gateway": "10.0.80.1"
}, {
"nodeSubnets": ["10.49.28.0/26"],
"ips": ["10.0.81.2~10.0.81.4"],
"subnet": "10.0.81.0/24",
"gateway": "10.0.81.1"
}]
}`
)