forked from kubesphere/kubekey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkkinstance_types.go
206 lines (168 loc) · 7.99 KB
/
kkinstance_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
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
/*
Copyright 2022 The KubeSphere Authors.
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 v1beta1
import (
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/sets"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
"sigs.k8s.io/cluster-api/errors"
)
const (
// InstanceFinalizer allows ReconcileKKInstance to clean up KubeKey resources associated with KKInstance before
// removing it from the apiserver.
InstanceFinalizer = "kkinstance.infrastructure.cluster.x-k8s.io"
)
// InstanceState describes the state of an KK instance.
type InstanceState string
var (
// InstanceStatePending is the string representing an instance in a pending state.
InstanceStatePending = InstanceState("pending")
// InstanceStateBootstrapping is the string representing an instance in a bootstrapping state.
InstanceStateBootstrapping = InstanceState("bootstrapping")
// InstanceStateBootstrapped = InstanceState("bootstrapped")
// InstanceStateRunning is the string representing an instance in a running state.
InstanceStateRunning = InstanceState("running")
// InstanceStateInPlaceUpgrading is the string representing an instance in an in-place-upgrading state.
InstanceStateInPlaceUpgrading = InstanceState("InPlaceUpgrading")
// InstanceStateCleaning is the string representing an instance in a cleaning state.
InstanceStateCleaning = InstanceState("cleaning")
// InstanceStateCleaned is the string representing an instance in a cleared state.
InstanceStateCleaned = InstanceState("cleaned")
// InstanceRunningStates defines the set of states in which an SSH instance is
// running or going to be running soon.
InstanceRunningStates = sets.NewString(
string(InstanceStatePending),
string(InstanceStateRunning),
)
// InstanceKnownStates represents all known KKInstance states.
InstanceKnownStates = InstanceRunningStates.Union(
sets.NewString(
string(InstanceStateBootstrapping),
string(InstanceStateCleaning),
string(InstanceStateCleaned),
string(InstanceStateInPlaceUpgrading),
),
)
)
// KKInstanceSpec defines the desired state of KKInstance
type KKInstanceSpec struct {
// Name is the host name of the machine.
// +kubebuilder:validation:MinLength=1
Name string `json:"name,omitempty"`
// Address is the IP address of the machine.
Address string `json:"address,omitempty"`
// InternalAddress is the internal IP address of the machine.
InternalAddress string `json:"internalAddress,omitempty"`
// Roles is the role of the machine.
// +optional
Roles []Role `json:"roles,omitempty"`
// Arch is the architecture of the machine. e.g. "amd64", "arm64".
// +optional
Arch string `json:"arch,omitempty"`
// Auth is the SSH authentication information of this machine. It will override the global auth configuration.
// +optional
Auth Auth `json:"auth,omitempty"`
// ContainerManager is the container manager config of this machine.
// +optional
ContainerManager ContainerManager `json:"containerManager,omitempty"`
// Repository is the repository config of this machine.
// +optional
Repository *Repository `json:"repository,omitempty"`
}
// KKInstanceStatus defines the observed state of KKInstance
type KKInstanceStatus struct {
// The current state of the instance.
State InstanceState `json:"instanceState,omitempty"`
// NodeRef will point to the corresponding Node if it exists.
// +optional
NodeRef *corev1.ObjectReference `json:"nodeRef,omitempty"`
// NodeInfo is a set of ids/uuids to uniquely identify the node.
// More info: https://kubernetes.io/docs/concepts/nodes/node/#info
// +optional
NodeInfo *corev1.NodeSystemInfo `json:"nodeInfo,omitempty"`
// FailureReason will be set in the event that there is a terminal problem
// reconciling the Machine and will contain a succinct value suitable
// for machine interpretation.
//
// This field should not be set for transitive errors that a controller
// faces that are expected to be fixed automatically over
// time (like service outages), but instead indicate that something is
// fundamentally wrong with the Machine's spec or the configuration of
// the controller, and that manual intervention is required. Examples
// of terminal errors would be invalid combinations of settings in the
// spec, values that are unsupported by the controller, or the
// responsible controller itself being critically misconfigured.
//
// Any transient errors that occur during the reconciliation of Machines
// can be added as events to the Machine object and/or logged in the
// controller's output.
// +optional
FailureReason *errors.MachineStatusError `json:"failureReason,omitempty"`
// FailureMessage will be set in the event that there is a terminal problem
// reconciling the Machine and will contain a more verbose string suitable
// for logging and human consumption.
//
// This field should not be set for transitive errors that a controller
// faces that are expected to be fixed automatically over
// time (like service outages), but instead indicate that something is
// fundamentally wrong with the Machine's spec or the configuration of
// the controller, and that manual intervention is required. Examples
// of terminal errors would be invalid combinations of settings in the
// spec, values that are unsupported by the controller, or the
// responsible controller itself being critically misconfigured.
//
// Any transient errors that occur during the reconciliation of Machines
// can be added as events to the Machine object and/or logged in the
// controller's output.
// +optional
FailureMessage *string `json:"failureMessage,omitempty"`
// Conditions defines current service state of the KKMachine.
// +optional
Conditions clusterv1.Conditions `json:"conditions,omitempty"`
}
// +kubebuilder:object:root=true
// +kubebuilder:subresource:status
// +kubebuilder:resource:path=kkinstances,scope=Namespaced,categories=cluster-api,shortName=kki
// +kubebuilder:storageversion
// +kubebuilder:printcolumn:name="Hostname",type="string",JSONPath=".spec.name",description="kubekey instance hostname"
// +kubebuilder:printcolumn:name="Address",type="string",JSONPath=".spec.address",description="kubekey instance address"
// +kubebuilder:printcolumn:name="State",type="string",JSONPath=".status.instanceState",description="KKInstance state"
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp",description="Time duration since creation of KKInstance"
// +kubebuilder:printcolumn:name="Version",type="string",JSONPath=".status.nodeInfo.kubeletVersion",description="Kubernetes version associated with this KKInstance"
// +k8s:defaulter-gen=true
// KKInstance is the Schema for the kkinstances API
type KKInstance struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec KKInstanceSpec `json:"spec,omitempty"`
Status KKInstanceStatus `json:"status,omitempty"`
}
// GetConditions returns the observations of the operational state of the KKMachine resource.
func (k *KKInstance) GetConditions() clusterv1.Conditions {
return k.Status.Conditions
}
// SetConditions sets the underlying service state of the KKInstance to the predescribed clusterv1.Conditions.
func (k *KKInstance) SetConditions(conditions clusterv1.Conditions) {
k.Status.Conditions = conditions
}
//+kubebuilder:object:root=true
// KKInstanceList contains a list of KKInstance
type KKInstanceList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []KKInstance `json:"items"`
}
func init() {
SchemeBuilder.Register(&KKInstance{}, &KKInstanceList{})
}