forked from kubernetes-sigs/cluster-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcondition_consts.go
298 lines (227 loc) · 16.1 KB
/
condition_consts.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
Copyright 2021 The Kubernetes 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
// ANCHOR: CommonConditions
// Common ConditionTypes used by Cluster API objects.
const (
// ReadyCondition defines the Ready condition type that summarizes the operational state of a Cluster API object.
ReadyCondition ConditionType = "Ready"
)
// Common ConditionReason used by Cluster API objects.
const (
// DeletingReason (Severity=Info) documents a condition not in Status=True because the underlying object it is currently being deleted.
DeletingReason = "Deleting"
// DeletionFailedReason (Severity=Warning) documents a condition not in Status=True because the underlying object
// encountered problems during deletion. This is a warning because the reconciler will retry deletion.
DeletionFailedReason = "DeletionFailed"
// DeletedReason (Severity=Info) documents a condition not in Status=True because the underlying object was deleted.
DeletedReason = "Deleted"
// IncorrectExternalRefReason (Severity=Error) documents a CAPI object with an incorrect external object reference.
IncorrectExternalRefReason = "IncorrectExternalRef"
)
const (
// InfrastructureReadyCondition reports a summary of current status of the infrastructure object defined for this cluster/machine/machinepool.
// This condition is mirrored from the Ready condition in the infrastructure ref object, and
// the absence of this condition might signal problems in the reconcile external loops or the fact that
// the infrastructure provider does not implement the Ready condition yet.
InfrastructureReadyCondition ConditionType = "InfrastructureReady"
// WaitingForInfrastructureFallbackReason (Severity=Info) documents a cluster/machine/machinepool waiting for the underlying infrastructure
// to be available.
// NOTE: This reason is used only as a fallback when the infrastructure object is not reporting its own ready condition.
WaitingForInfrastructureFallbackReason = "WaitingForInfrastructure"
)
// ANCHOR_END: CommonConditions
// Conditions and condition Reasons for the Cluster object.
const (
// ControlPlaneInitializedCondition reports if the cluster's control plane has been initialized such that the
// cluster's apiserver is reachable and at least one control plane Machine has a node reference. Once this
// condition is marked true, its value is never changed. See the ControlPlaneReady condition for an indication of
// the current readiness of the cluster's control plane.
ControlPlaneInitializedCondition ConditionType = "ControlPlaneInitialized"
// MissingNodeRefReason (Severity=Info) documents a cluster waiting for at least one control plane Machine to have
// its node reference populated.
MissingNodeRefReason = "MissingNodeRef"
// WaitingForControlPlaneProviderInitializedReason (Severity=Info) documents a cluster waiting for the control plane
// provider to report successful control plane initialization.
WaitingForControlPlaneProviderInitializedReason = "WaitingForControlPlaneProviderInitialized"
// ControlPlaneReadyCondition reports the ready condition from the control plane object defined for this cluster.
// This condition is mirrored from the Ready condition in the control plane ref object, and
// the absence of this condition might signal problems in the reconcile external loops or the fact that
// the control plane provider does not implement the Ready condition yet.
ControlPlaneReadyCondition ConditionType = "ControlPlaneReady"
// WaitingForControlPlaneFallbackReason (Severity=Info) documents a cluster waiting for the control plane
// to be available.
// NOTE: This reason is used only as a fallback when the control plane object is not reporting its own ready condition.
WaitingForControlPlaneFallbackReason = "WaitingForControlPlane"
// WaitingForControlPlaneAvailableReason (Severity=Info) documents a Cluster API object
// waiting for the control plane machine to be available.
//
// NOTE: Having the control plane machine available is a pre-condition for joining additional control planes
// or workers nodes.
WaitingForControlPlaneAvailableReason = "WaitingForControlPlaneAvailable"
)
// Conditions and condition Reasons for the Machine object.
const (
// BootstrapReadyCondition reports a summary of current status of the bootstrap object defined for this machine.
// This condition is mirrored from the Ready condition in the bootstrap ref object, and
// the absence of this condition might signal problems in the reconcile external loops or the fact that
// the bootstrap provider does not implement the Ready condition yet.
BootstrapReadyCondition ConditionType = "BootstrapReady"
// WaitingForDataSecretFallbackReason (Severity=Info) documents a machine waiting for the bootstrap data secret
// to be available.
// NOTE: This reason is used only as a fallback when the bootstrap object is not reporting its own ready condition.
WaitingForDataSecretFallbackReason = "WaitingForDataSecret"
// DrainingSucceededCondition provide evidence of the status of the node drain operation which happens during the machine
// deletion process.
DrainingSucceededCondition ConditionType = "DrainingSucceeded"
// DrainingReason (Severity=Info) documents a machine node being drained.
DrainingReason = "Draining"
// DrainingFailedReason (Severity=Warning) documents a machine node drain operation failed.
DrainingFailedReason = "DrainingFailed"
// PreDrainDeleteHookSucceededCondition reports a machine waiting for a PreDrainDeleteHook before being delete.
PreDrainDeleteHookSucceededCondition ConditionType = "PreDrainDeleteHookSucceeded"
// PreTerminateDeleteHookSucceededCondition reports a machine waiting for a PreDrainDeleteHook before being delete.
PreTerminateDeleteHookSucceededCondition ConditionType = "PreTerminateDeleteHookSucceeded"
// WaitingExternalHookReason (Severity=Info) provide evidence that we are waiting for an external hook to complete.
WaitingExternalHookReason = "WaitingExternalHook"
// VolumeDetachSucceededCondition reports a machine waiting for volumes to be detached.
VolumeDetachSucceededCondition ConditionType = "VolumeDetachSucceeded"
// WaitingForVolumeDetachReason (Severity=Info) provide evidence that a machine node waiting for volumes to be attached.
WaitingForVolumeDetachReason = "WaitingForVolumeDetach"
)
const (
// MachineHealthCheckSucceededCondition is set on machines that have passed a healthcheck by the MachineHealthCheck controller.
// In the event that the health check fails it will be set to False.
MachineHealthCheckSucceededCondition ConditionType = "HealthCheckSucceeded"
// MachineHealthCheckSuccededCondition is set on machines that have passed a healthcheck by the MachineHealthCheck controller.
// In the event that the health check fails it will be set to False.
//
// Deprecated: This const is going to be removed in a next release. Use MachineHealthCheckSucceededCondition instead.
MachineHealthCheckSuccededCondition ConditionType = "HealthCheckSucceeded"
// MachineHasFailureReason is the reason used when a machine has either a FailureReason or a FailureMessage set on its status.
MachineHasFailureReason = "MachineHasFailure"
// NodeStartupTimeoutReason is the reason used when a machine's node does not appear within the specified timeout.
NodeStartupTimeoutReason = "NodeStartupTimeout"
// UnhealthyNodeConditionReason is the reason used when a machine's node has one of the MachineHealthCheck's unhealthy conditions.
UnhealthyNodeConditionReason = "UnhealthyNode"
)
const (
// MachineOwnerRemediatedCondition is set on machines that have failed a healthcheck by the MachineHealthCheck controller.
// MachineOwnerRemediatedCondition is set to False after a health check fails, but should be changed to True by the owning controller after remediation succeeds.
MachineOwnerRemediatedCondition ConditionType = "OwnerRemediated"
// WaitingForRemediationReason is the reason used when a machine fails a health check and remediation is needed.
WaitingForRemediationReason = "WaitingForRemediation"
// RemediationFailedReason is the reason used when a remediation owner fails to remediate an unhealthy machine.
RemediationFailedReason = "RemediationFailed"
// RemediationInProgressReason is the reason used when an unhealthy machine is being remediated by the remediation owner.
RemediationInProgressReason = "RemediationInProgress"
// ExternalRemediationTemplateAvailableCondition is set on machinehealthchecks when MachineHealthCheck controller uses external remediation.
// ExternalRemediationTemplateAvailableCondition is set to false if external remediation template is not found.
ExternalRemediationTemplateAvailableCondition ConditionType = "ExternalRemediationTemplateAvailable"
// ExternalRemediationTemplateNotFoundReason is the reason used when a machine health check fails to find external remediation template.
ExternalRemediationTemplateNotFoundReason = "ExternalRemediationTemplateNotFound"
// ExternalRemediationRequestAvailableCondition is set on machinehealthchecks when MachineHealthCheck controller uses external remediation.
// ExternalRemediationRequestAvailableCondition is set to false if creating external remediation request fails.
ExternalRemediationRequestAvailableCondition ConditionType = "ExternalRemediationRequestAvailable"
// ExternalRemediationRequestCreationFailedReason is the reason used when a machine health check fails to create external remediation request.
ExternalRemediationRequestCreationFailedReason = "ExternalRemediationRequestCreationFailed"
)
// Conditions and condition Reasons for the Machine's Node object.
const (
// MachineNodeHealthyCondition provides info about the operational state of the Kubernetes node hosted on the machine by summarizing node conditions.
// If the conditions defined in a Kubernetes node (i.e., NodeReady, NodeMemoryPressure, NodeDiskPressure, NodePIDPressure, and NodeNetworkUnavailable) are in a healthy state, it will be set to True.
MachineNodeHealthyCondition ConditionType = "NodeHealthy"
// WaitingForNodeRefReason (Severity=Info) documents a machine.spec.providerId is not assigned yet.
WaitingForNodeRefReason = "WaitingForNodeRef"
// NodeProvisioningReason (Severity=Info) documents machine in the process of provisioning a node.
// NB. provisioning --> NodeRef == "".
NodeProvisioningReason = "NodeProvisioning"
// NodeNotFoundReason (Severity=Error) documents a machine's node has previously been observed but is now gone.
// NB. provisioned --> NodeRef != "".
NodeNotFoundReason = "NodeNotFound"
// NodeConditionsFailedReason (Severity=Warning) documents a node is not in a healthy state due to the failed state of at least 1 Kubelet condition.
NodeConditionsFailedReason = "NodeConditionsFailed"
)
// Conditions and condition Reasons for the MachineHealthCheck object.
const (
// RemediationAllowedCondition is set on MachineHealthChecks to show the status of whether the MachineHealthCheck is
// allowed to remediate any Machines or whether it is blocked from remediating any further.
RemediationAllowedCondition ConditionType = "RemediationAllowed"
// TooManyUnhealthyReason is the reason used when too many Machines are unhealthy and the MachineHealthCheck is blocked
// from making any further remediations.
TooManyUnhealthyReason = "TooManyUnhealthy"
)
// Conditions and condition Reasons for MachineDeployments.
const (
// MachineDeploymentAvailableCondition means the MachineDeployment is available, that is, at least the minimum available
// machines required (i.e. Spec.Replicas-MaxUnavailable when MachineDeploymentStrategyType = RollingUpdate) are up and running for at least minReadySeconds.
MachineDeploymentAvailableCondition ConditionType = "Available"
// WaitingForAvailableMachinesReason (Severity=Warning) reflects the fact that the required minimum number of machines for a machinedeployment are not available.
WaitingForAvailableMachinesReason = "WaitingForAvailableMachines"
)
// Conditions and condition Reasons for MachineSets.
const (
// MachinesCreatedCondition documents that the machines controlled by the MachineSet are created.
// When this condition is false, it indicates that there was an error when cloning the infrastructure/bootstrap template or
// when generating the machine object.
MachinesCreatedCondition ConditionType = "MachinesCreated"
// MachinesReadyCondition reports an aggregate of current status of the machines controlled by the MachineSet.
MachinesReadyCondition ConditionType = "MachinesReady"
// BootstrapTemplateCloningFailedReason (Severity=Error) documents a MachineSet failing to
// clone the bootstrap template.
BootstrapTemplateCloningFailedReason = "BootstrapTemplateCloningFailed"
// InfrastructureTemplateCloningFailedReason (Severity=Error) documents a MachineSet failing to
// clone the infrastructure template.
InfrastructureTemplateCloningFailedReason = "InfrastructureTemplateCloningFailed"
// MachineCreationFailedReason (Severity=Error) documents a MachineSet failing to
// generate a machine object.
MachineCreationFailedReason = "MachineCreationFailed"
// ResizedCondition documents a MachineSet is resizing the set of controlled machines.
ResizedCondition ConditionType = "Resized"
// ScalingUpReason (Severity=Info) documents a MachineSet is increasing the number of replicas.
ScalingUpReason = "ScalingUp"
// ScalingDownReason (Severity=Info) documents a MachineSet is decreasing the number of replicas.
ScalingDownReason = "ScalingDown"
)
// Conditions and condition reasons for Clusters with a managed Topology.
const (
// TopologyReconciledCondition provides evidence about the reconciliation of a Cluster topology into
// the managed objects of the Cluster.
// Status false means that for any reason, the values defined in Cluster.spec.topology are not yet applied to
// managed objects on the Cluster; status true means that Cluster.spec.topology have been applied to
// the objects in the Cluster (but this does not imply those objects are already reconciled to the spec provided).
TopologyReconciledCondition ConditionType = "TopologyReconciled"
// TopologyReconcileFailedReason (Severity=Error) documents the reconciliation of a Cluster topology
// failing due to an error.
TopologyReconcileFailedReason = "TopologyReconcileFailed"
// TopologyReconciledControlPlaneUpgradePendingReason (Severity=Info) documents reconciliation of a Cluster topology
// not yet completed because Control Plane is not yet updated to match the desired topology spec.
TopologyReconciledControlPlaneUpgradePendingReason = "ControlPlaneUpgradePending"
// TopologyReconciledMachineDeploymentsUpgradePendingReason (Severity=Info) documents reconciliation of a Cluster topology
// not yet completed because at least one of the MachineDeployments is not yet updated to match the desired topology spec.
TopologyReconciledMachineDeploymentsUpgradePendingReason = "MachineDeploymentsUpgradePending"
// TopologyReconciledHookBlockingReason (Severity=Info) documents reconciliation of a Cluster topology
// not yet completed because at least one of the lifecycle hooks is blocking.
TopologyReconciledHookBlockingReason = "LifecycleHookBlocking"
)
// Conditions and condition reasons for ClusterClass.
const (
// ClusterClassRefVersionsUpToDateCondition documents if the references in the ClusterClass are
// up-to-date (i.e. they are using the latest apiVersion of the current Cluster API contract from
// the corresponding CRD).
ClusterClassRefVersionsUpToDateCondition ConditionType = "RefVersionsUpToDate"
// ClusterClassOutdatedRefVersionsReason (Severity=Warning) that the references in the ClusterClass are not
// up-to-date (i.e. they are not using the latest apiVersion of the current Cluster API contract from
// the corresponding CRD).
ClusterClassOutdatedRefVersionsReason = "OutdatedRefVersions"
)