-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypes.go
More file actions
95 lines (78 loc) · 2.96 KB
/
types.go
File metadata and controls
95 lines (78 loc) · 2.96 KB
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
/*
Copyright AppsCode Inc. and Contributors
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
http://www.apache.org/licenses/LICENSE-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 OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cluster
type BasicInfo struct {
Name string `json:"name"`
DisplayName string `json:"displayName"`
OwnerID int64 `json:"ownerID,omitempty"`
ManagerID int64 `json:"managerID,omitempty"`
UserID int64 `json:"userID,omitempty"`
ClusterUID string `json:"clusterUID,omitempty"`
HubClusterID string `json:"hubClusterID,omitempty"`
InfraNamespace string `json:"infraNamespace,omitempty"`
}
// +kubebuilder:validation:Enum=IRSA;PodIdentity
type EksAuthMode string
const (
EksAuthModeIRSA EksAuthMode = "IRSA"
EksAuthModePodIdentity EksAuthMode = "PodIdentity"
)
type ProviderOptions struct {
Name string `json:"name"`
Credential string `json:"credential,omitempty"`
EksAuthMode EksAuthMode `json:"eksAuthMode,omitempty"`
ClusterID string `json:"clusterID,omitempty"`
Project string `json:"project,omitempty"`
Region string `json:"region,omitempty"`
ResourceGroup string `json:"resourceGroup,omitempty"`
KubeConfig string `json:"kubeConfig,omitempty"`
}
type ComponentOptions struct {
FluxCD bool `json:"fluxCD,omitempty"`
FeatureSets []FeatureSet `json:"featureSets,omitempty"`
AllFeatures bool `json:"allFeatures,omitempty"`
ClusterProfile string `json:"clusterProfile,omitempty"`
SpokeComponents bool `json:"spokeComponent,omitempty"`
}
type FeatureSet struct {
Name string `json:"name"`
Features []string `json:"features,omitempty"`
}
type ListOptions struct {
Provider string `json:"provider,omitempty"`
}
type GetOptions struct {
Name string `json:"name,omitempty"`
}
type CheckOptions struct {
BasicInfo BasicInfo `json:"basicInfo,omitempty"`
Provider ProviderOptions `json:"provider"`
}
type ImportOptions struct {
BasicInfo BasicInfo `json:"basicInfo,omitempty"`
Provider ProviderOptions `json:"provider,omitempty"`
Components ComponentOptions `json:"components,omitempty"`
}
type ConnectOptions struct {
Name string `json:"name"`
Credential string `json:"credential,omitempty"`
KubeConfig string `json:"kubeConfig,omitempty"`
}
type ReconfigureOptions struct {
BasicInfo BasicInfo `json:"basicInfo"`
Components ComponentOptions `json:"components,omitempty"`
}
type RemovalOptions struct {
Name string `json:"name"`
Components ComponentOptions `json:"components,omitempty"`
}