-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster_types.go
105 lines (80 loc) · 3.18 KB
/
cluster_types.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
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
/*
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 v1
import (
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN!
// NOTE: json tags are required. Any new fields you add must have json tags for the fields to be serialized.
// +kubebuilder:object:root=true
// KaasConfig contains some global config information used by Kaas
type KaasConfig struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
DefaultServiceType v1.ServiceType `json:"defaultServiceType,omitempty"`
DefaultPort v1.ServicePort `json:"defaultPort,omitempty"`
}
// ClusterType is a list of the types of local clusters we can provision
type ClusterType string
const (
// KindCluster is a sigs.k8s.io/kind cluster
KindCluster ClusterType = "kind"
// K3sCluster is a k3s.io cluster
K3sCluster ClusterType = "k3s"
)
// ClusterSpec defines the desired state of Cluster
type ClusterSpec struct {
ClusterType ClusterType `json:"clusterType"`
ClusterSpec string `json:"clusterSpec,omitempty"`
ClusterYAML []string `json:"clusterYAML,omitempty"`
Image string `json:"image,omitempty"`
CPU *resource.Quantity `json:"cpu"`
Memory *resource.Quantity `json:"memory"`
}
// ClusterStatus defines the observed state of Cluster
type ClusterStatus struct {
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
// Important: Run "make" to regenerate code after modifying this file
Ready bool `json:"ready"`
LoadBalancerIP string `json:"loadBalancerIP"`
}
// Cluster is the Schema for the clusters API
// +kubebuilder:object:root=true
// +kubebuilder:printcolumn:name="Ready",type=boolean,JSONPath=`.status.ready`
// +kubebuilder:printcolumn:name="Flavor",type=string,JSONPath=`.spec.clusterType`
// +kubebuilder:printcolumn:name="Age",type=date,JSONPath=`.metadata.creationTimestamp`
type Cluster struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec ClusterSpec `json:"spec,omitempty"`
Status ClusterStatus `json:"status,omitempty"`
KaasConfig *KaasConfig `json:"kaasConfig,omitempty"`
}
// +kubebuilder:object:root=true
// ClusterList contains a list of Cluster
type ClusterList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Cluster `json:"items"`
}
// +kubebuilder:object:root=true
// KaasConfigList contains a list of Cluster
type KaasConfigList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []KaasConfig `json:"items"`
}
func init() {
SchemeBuilder.Register(&Cluster{}, &ClusterList{}, &KaasConfig{}, &KaasConfigList{})
}