-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathtestSet.env
234 lines (184 loc) · 9.75 KB
/
testSet.env
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/bin/bash
## MCIS name prefix text
MCISPREFIX=cb
## MCIS monitoring agent install. [yes or no]
AgentInstallOn=no
## Number of CSP types and corresponding regions
NumCSP=1
## Define sequential test order for cloud types
# Note: you can change order by replacing lines (automatically assign continuous numbers starting from 1)
IX=0
IndexAWS=$((++IX))
IndexAzure=$((++IX))
IndexGCP=$((++IX))
IndexAlibaba=$((++IX))
IndexMock=$((++IX))
IndexOpenstack=$((++IX))
IndexNCP=$((++IX))
IndexCloudTwin=$((++IX))
IndexCloudit=$((++IX))
IndexTencent=$((++IX))
## Designated strings for Cloud types
# Note: don't need to touch unless you are adding new Cloud type
CSPType[$IndexAWS]=aws
CSPType[$IndexAlibaba]=alibaba
CSPType[$IndexGCP]=gcp
CSPType[$IndexAzure]=azure
CSPType[$IndexMock]=mock
CSPType[$IndexOpenstack]=openstack
CSPType[$IndexNCP]=ncp
CSPType[$IndexCloudTwin]=cloudtwin
CSPType[$IndexCloudit]=cloudit
CSPType[$IndexTencent]=tencent
## Test setting for Regions of Cloud types
# Note: you can change order by replacing lines (automatically assign continuous numbers starting from 1)
# AWS (Total: 21 Regions / Recommend: 20 Regions)
NumRegion[$IndexAWS]=2
IY=0
AwsApSoutheast1=$((++IY)) # Location: Asia Pacific (Singapore)
AwsCaCentral1=$((++IY)) # Location: Canada (Central)
AwsUsWest1=$((++IY)) # Location: US West (N. California)
AwsUsEast1=$((++IY)) # Location: US East (N. Virginia)
AwsApNortheast1=$((++IY)) # Location: Asia Pacific (Tokyo)
AwsApSouth1=$((++IY)) # Location: Asia Pacific (Mumbai)
AwsApSoutheast2=$((++IY)) # Location: Asia Pacific (Sydney)
AwsEuWest2=$((++IY)) # Location: Europe (London)
AwsUsEast2=$((++IY)) # Location: US East (Ohio)
AwsUsWest2=$((++IY)) # Location: US West (Oregon)
AwsApNortheast3=$((++IY)) # Location: Asia Pacific (Osaka)
AwsEuCentral1=$((++IY)) # Location: Europe (Frankfurt)
AwsEuWest1=$((++IY)) # Location: Europe (Ireland)
AwsEuWest3=$((++IY)) # Location: Europe (Paris)
AwsEuNorth1=$((++IY)) # Location: Europe (Stockholm) - No t2.xxx Specs. t3 c5 m5 r5 .. are availble
AwsSaEast1=$((++IY)) # Location: South America (São Paulo)
AwsApNortheast2=$((++IY)) # Location: Asia Pacific (Seoul)
AwsApEast1=$((++IY)) # Location: Asia Pacific (Hong Kong) - Opt-In required
AwsMeSouth1=$((++IY)) # Location: Middle East (Bahrain) - Opt-In required
AwsAfSouth1=$((++IY)) # Location: Africa (Cape Town) - Opt-In required
AwsEuSouth1=$((++IY)) # Location: Europe (Milan) - Opt-In required
# Alibaba (Total: 23 Regions / Recommend: 8 Regions)
NumRegion[$IndexAlibaba]=2
IY=0
AlibabaApNortheast1=$((++IY)) # Location: Japan (Tokyo)
AlibabaApSouth1=$((++IY)) # Location: Mumbai Zone A
AlibabaApSoutheast1=$((++IY)) # Location: Singapore [zone:a,b,c]
AlibabaApSoutheast2=$((++IY)) # Location: Australia (Sydney) [zone:a,b]
AlibabaApSoutheast3=$((++IY)) # Location: Malaysia (Kuala Lumpur) [zone:a,b]
AlibabaApSoutheast5=$((++IY)) # Location: Indonesia (Jakarta) [zone:a,b]
AlibabaUsWest1=$((++IY)) # Location: US (Silicon Valley) [zone:a,b]
AlibabaUsEast1=$((++IY)) # Location: US (Virginia) [zone:a,b]
AlibabaEuCentral1=$((++IY)) # Location: Germany (Frankfurt) [zone:a,b] - ERR: Unable to get GetVMSpec - context deadline exceeded
AlibabaEuWest1=$((++IY)) # Location: UK (London) [zone:a,b] - ERR: Unable to get GetVMSpec - context deadline exceeded
AlibabaMeEast1=$((++IY)) # Location: UAE (Dubai) [zone:a] - Few VM Specs are available
AlibabaCnHongkong=$((++IY)) # Location: China (Hong Kong) [zone:b,c] - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnShanghai=$((++IY)) # Location: China (Shanghai) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnBeijing=$((++IY)) # Location: China (Beijing) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnQingdao=$((++IY)) # Location: China (Qingdao) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnZhangjiakou=$((++IY)) # Location: China (Zhangjiakou) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnHuhehaote=$((++IY)) # Location: China (Hohhot) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnHangzhou=$((++IY)) # Location: China (Hangzhou) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnShenzhen=$((++IY)) # Location: China (Shenzhen) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnHeyuan=$((++IY)) # Location: China (Heyuan) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnChengdu=$((++IY)) # Location: China (Chengdu) - NEED TO CHECK NETWORK OUTBOUND
AlibabaCnWulanchabu=$((++IY)) # Location: China (Ulanqab) - ERR: InvalidSystemDiskCategory.ValueNotSupported - NEED TO CHECK NETWORK OUTBOUND. no ecs.t5 available.
AlibabaCnGuangzhou=$((++IY)) # Location: China (Guangzhou) - NEED TO CHECK NETWORK OUTBOUND. no ecs.t5 available.
# GCP (Total: 25 Regions / Recommend: 22 Regions)
NumRegion[$IndexGCP]=2
IY=0
GcpAsiaEast1=$((++IY)) # Location: Changhua County Taiwan
GcpEuropeWest3=$((++IY)) # Location: Frankfurt Germany
GcpAsiaEast2=$((++IY)) # Location: Hong Kong
GcpAsiaNortheast1=$((++IY)) # Location: Tokyo Japan
GcpAsiaNortheast2=$((++IY)) # Location: Osaka Japan
GcpAsiaNortheast3=$((++IY)) # Location: Seoul South Korea
GcpUsWest4=$((++IY)) # Location: Las Vegas Nevada USA
GcpAsiaSoutheast1=$((++IY)) # Location: Jurong West Singapore
GcpAustraliaSoutheast1=$((++IY)) # Location: Sydney Australia
GcpEuropeNorth1=$((++IY)) # Location: Hamina Finland
GcpEuropeWest1=$((++IY)) # Location: St. Ghislain Belgium
GcpEuropeWest2=$((++IY)) # Location: London England UK
GcpEuropeWest4=$((++IY)) # Location: Eemshaven Netherlands
GcpEuropeWest6=$((++IY)) # Location: Zurich Switzerland
GcpNorthamericaNortheast1=$((++IY)) # Location: Montreal Quebec Canada
GcpSouthamericaEast1=$((++IY)) # Location: Osasco (Sao Paulo) Brazil
GcpUsCentral1=$((++IY)) # Location: Council Bluffs Iowa USA
GcpUsEast1=$((++IY)) # Location: Moncks Corner South Carolina USA
GcpUsEast4=$((++IY)) # Location: Ashburn Northern Virginia USA
GcpUsWest1=$((++IY)) # Location: The Dalles Oregon USA
GcpUsWest2=$((++IY)) # Location: Los Angeles California USA
GcpUsWest3=$((++IY)) # Location: Salt Lake City Utah USA
GcpAsiaSouth1=$((++IY)) # Location: Mumbai India (zone b since zone a returns QUOTA_EXCEEDED)
GcpAsiaSoutheast2=$((++IY)) # Location: Jakarta, Indonesia, APAC
GcpEuropeCentral2=$((++IY)) # Location: Warsaw, Poland, Europe
# Azure (Total: 40 Regions / Recommend: 34 Regions)
NumRegion[$IndexAzure]=2
IY=0
AzureWestus=$((++IY)) # Location: West US
AzureEastus=$((++IY)) # Location: East US
AzureNortheurope=$((++IY)) # Location: North Europe
AzureWesteurope=$((++IY)) # Location: West Europe
AzureEastasia=$((++IY)) # Location: East Asia
AzureSoutheastasia=$((++IY)) # Location: Southeast Asia
AzureNorthcentralus=$((++IY)) # Location: North Central US
AzureSouthcentralus=$((++IY)) # Location: South Central US
AzureCentralus=$((++IY)) # Location: Central US
AzureEastus2=$((++IY)) # Location: East US 2
AzureJapaneast=$((++IY)) # Location: Japan East
AzureJapanwest=$((++IY)) # Location: Japan West
AzureBrazilsouth=$((++IY)) # Location: Brazil South
AzureAustraliaeast=$((++IY)) # Location: Australia East
AzureAustraliasoutheast=$((++IY)) # Location: Australia Southeast
AzureCentralindia=$((++IY)) # Location: Central India
AzureCanadacentral=$((++IY)) # Location: Canada Central
AzureCanadaeast=$((++IY)) # Location: Canada East
AzureWestcentralus=$((++IY)) # Location: West Central US
AzureWestus2=$((++IY)) # Location: West US 2
AzureUkwest=$((++IY)) # Location: UK West
AzureUksouth=$((++IY)) # Location: UK South
AzureKoreacentral=$((++IY)) # Location: Korea Central
AzureKoreasouth=$((++IY)) # Location: Korea South
AzureFrancecentral=$((++IY)) # Location: France Central
AzureAustraliacentral=$((++IY)) # Location: Australia Central
AzureSouthafricanorth=$((++IY)) # Location: South Africa North
AzureUaenorth=$((++IY)) # Location: UAE North
AzureSwitzerlandnorth=$((++IY)) # Location: Switzerland North
AzureGermanywestcentral=$((++IY)) # Location: Germany West Central
AzureNorwayeast=$((++IY)) # Location: Norway East
AzureSouthindia=$((++IY)) # Location: South India (not recommend) ERR: not subscribed by default
AzureWestindia=$((++IY)) # Location: West India (not recommend) ERR: not subscribed by default
# Azurejioindiawest
AzureSouthafricawest=$((++IY)) # Location: South Africa West (not recommend)
AzureSwitzerlandwest=$((++IY)) # Location: Switzerland West (not recommend)
AzureGermanynorth=$((++IY)) # Location: Germany North (not recommend)
AzureUaecentral=$((++IY)) # Location: UAE Central (not recommend)
AzureNorwaywest=$((++IY)) # Location: Norway West (not recommend)
AzureFrancesouth=$((++IY)) # Location: France South (not recommend)
AzureAustraliacentral2=$((++IY)) # Location: Australia Central 2 (not recommend. not support vm service)
# Mock (Total: 1 Regions / Recommend: 1 Regions)
NumRegion[$IndexMock]=1
IY=0
MockSeoul=$((++IY)) # Location: Korea Seoul (Virtual)
# Openstack (Total: 1 Regions / Recommend: 1 Regions)
NumRegion[$IndexOpenstack]=1
IY=0
OpenstackRegion01=$((++IY)) # Location: Korea Daejeon (Internal)
# NCP (Total: 5 Regions / Recommend: ? Regions / Not tested yet)
NumRegion[$IndexNCP]=5
IY=0
NcpKorea1=$((++IY)) # Location: NCP Korea
NcpUsWestern=$((++IY)) # Location: NCP US West
NcpGermany=$((++IY)) # Location: NCP Germany
NcpSingapore=$((++IY)) # Location: NCP Singapore
NcpJapan=$((++IY)) # Location: NCP Japan
# Cloud-Twin (Total: 1 Regions / Recommend: 1 Regions)
NumRegion[$IndexCloudTwin]=1
IY=0
CloudTwinRegion01=$((++IY)) # Location: Korea Daejeon (Internal)
# Cloudit (Total: 1 Regions / Recommend: 1 Regions)
NumRegion[$IndexCloudit]=1
IY=0
ClouditRegion01=$((++IY)) # Location: Korea Seoul (Internal)
# Tencent (Total: 17 Regions / Recommend: m Regions)
NumRegion[$IndexTencent]=1
IY=0
TencentApSingapore=$((++IY)) # Location: Singapore