File tree 1 file changed +54
-0
lines changed
1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ type ClusterPlatformType string
8
8
9
9
const (
10
10
ClusterPlatformAWS ClusterPlatformType = "aws"
11
+ ClusterPlatformAzure ClusterPlatformType = "azure"
12
+ ClusterPlatformGCP ClusterPlatformType = "gcp"
11
13
ClusterPlatformDGX ClusterPlatformType = "nvidia-dgx"
12
14
ClusterPlatformMetal ClusterPlatformType = "metal"
13
15
ClusterPlatformPaperspace ClusterPlatformType = "paperspace-cloud"
@@ -27,9 +29,61 @@ var ClusterAWSRegions = []string{
27
29
"ap-southeast-2" ,
28
30
}
29
31
32
+ var ClusterAzureRegions = []string {
33
+ "australiacentral" ,
34
+ "australiaeast" ,
35
+ "australiasoutheast" ,
36
+ "brazilsouth" ,
37
+ "brazilsoutheast" ,
38
+ "canadacentral" ,
39
+ "canadaeast" ,
40
+ "centralindia" ,
41
+ "centralus" ,
42
+ "eastasia" ,
43
+ "eastus" ,
44
+ "eastus2" ,
45
+ "francecentral" ,
46
+ "francesouth" ,
47
+ "germanynorth" ,
48
+ "germanywestcentral" ,
49
+ "japaneast" ,
50
+ "japanwest" ,
51
+ "koreacentral" ,
52
+ "koreasouth" ,
53
+ "northcentralus" ,
54
+ "northeurope" ,
55
+ "norwayeast" ,
56
+ "norwaywest" ,
57
+ "southafricanorth" ,
58
+ "southcentralus" ,
59
+ "southindia" ,
60
+ "southeastasia" ,
61
+ "switzerlandnorth" ,
62
+ "switzerlandwest" ,
63
+ "uaecentral" ,
64
+ "uaenorth" ,
65
+ "uksouth" ,
66
+ "ukwest" ,
67
+ "westcentralus" ,
68
+ "westeurope" ,
69
+ "westus" ,
70
+ "westus2" ,
71
+ }
72
+
73
+ var ClusterGCPRegions = []string {
74
+ "asia-east1" ,
75
+ "europe-west1" ,
76
+ "europe-west4" ,
77
+ "us-central1" ,
78
+ "us-east1" ,
79
+ "us-west1" ,
80
+ }
81
+
30
82
var ClusterPlatforms = []ClusterPlatformType {
31
83
ClusterPlatformAWS ,
84
+ ClusterPlatformAzure ,
32
85
ClusterPlatformDGX ,
86
+ ClusterPlatformGCP ,
33
87
ClusterPlatformMetal ,
34
88
ClusterPlatformPaperspace ,
35
89
}
You can’t perform that action at this time.
0 commit comments