generated from cybozu-go/neco-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_autodctest.go
54 lines (52 loc) · 972 Bytes
/
config_autodctest.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
package necogcp
// Instance settings for the "auto-dctest" function.
// The instances will be created with the specified zone and machine type.
const (
autoDCTestMachineType = "n1-standard-64"
autoDCTestNumLocalSSDs = 1
autoDCTestZone = "asia-northeast1-c"
)
// The holiday list for the "auto-dctest" function.
// On the days listed here, the auto instance creation will be skipped.
// Please update annually :)
var autoDCTestJPHolidays = []string{
"20220321",
"20220429",
"20220503",
"20220504",
"20220505",
"20220718",
"20220811",
"20220919",
"20220923",
"20221010",
"20221103",
"20221123",
"20221229",
"20221230",
"20221231",
"20230101",
"20230102",
"20230103",
"20230109",
"20230211",
"20230223",
"20230321",
"20230429",
"20230503",
"20230504",
"20230505",
"20230717",
"20230811",
"20230918",
"20230923",
"20231009",
"20231103",
"20231123",
"20231229",
"20231230",
"20231231",
"20240101",
"20240102",
"20240103",
}