-
Notifications
You must be signed in to change notification settings - Fork 570
/
conditions_consts.go
92 lines (81 loc) · 4.76 KB
/
conditions_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
/*
Copyright 2020 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 v1alpha3
import clusterv1alpha3 "sigs.k8s.io/cluster-api/api/v1alpha3"
const (
// ASGReadyCondition reports on current status of the autoscaling group. Ready indicates the group is provisioned.
ASGReadyCondition clusterv1alpha3.ConditionType = "ASGReady"
// ASGNotFoundReason used when the autoscaling group couldn't be retrieved.
ASGNotFoundReason = "ASGNotFound"
// ASGProvisionFailedReason used for failures during autoscaling group provisioning.
ASGProvisionFailedReason = "ASGProvisionFailed"
// ASGDeletionInProgress ASG is in a deletion in progress state.
ASGDeletionInProgress = "ASGDeletionInProgress"
// LaunchTemplateReadyCondition represents the status of an AWSMachinePool's associated Launch Template.
LaunchTemplateReadyCondition clusterv1alpha3.ConditionType = "LaunchTemplateReady"
// LaunchTemplateNotFoundReason is used when an associated Launch Template can't be found.
LaunchTemplateNotFoundReason = "LaunchTemplateNotFound"
// LaunchTemplateCreateFailedReason used for failures during Launch Template creation.
LaunchTemplateCreateFailedReason = "LaunchTemplateCreateFailed"
// InstanceRefreshStartedCondition reports on successfully starting instance refresh.
InstanceRefreshStartedCondition clusterv1alpha3.ConditionType = "InstanceRefreshStarted"
// InstanceRefreshNotReadyReason used to report instance refresh is not initiated.
// If there are instance refreshes that are in progress, then a new instance refresh request will fail.
InstanceRefreshNotReadyReason = "InstanceRefreshNotReady"
// InstanceRefreshFailedReason used to report when there instance refresh is not initiated.
InstanceRefreshFailedReason = "InstanceRefreshFailed"
)
const (
// EKSNodegroupReadyCondition condition reports on the successful reconciliation of eks control plane.
EKSNodegroupReadyCondition clusterv1alpha3.ConditionType = "EKSNodegroupReady"
// EKSNodegroupReconciliationFailedReason used to report failures while reconciling EKS control plane.
EKSNodegroupReconciliationFailedReason = "EKSNodegroupReconciliationFailed"
// WaitingForEKSControlPlaneReason used when the machine pool is waiting for
// EKS control plane infrastructure to be ready before proceeding.
WaitingForEKSControlPlaneReason = "WaitingForEKSControlPlane"
)
const (
// EKSFargateProfileReadyCondition condition reports on the successful reconciliation of eks control plane.
EKSFargateProfileReadyCondition clusterv1alpha3.ConditionType = "EKSFargateProfileReady"
// EKSFargateCreatingCondition condition reports on whether the fargate
// profile is creating.
EKSFargateCreatingCondition clusterv1alpha3.ConditionType = "EKSFargateCreating"
// EKSFargateDeletingCondition used to report that the profile is deleting.
EKSFargateDeletingCondition = "EKSFargateDeleting"
// EKSFargateReconciliationFailedReason used to report failures while reconciling EKS control plane.
EKSFargateReconciliationFailedReason = "EKSFargateReconciliationFailed"
// EKSFargateDeletingReason used when the profile is deleting.
EKSFargateDeletingReason = "Deleting"
// EKSFargateCreatingReason used when the profile is creating.
EKSFargateCreatingReason = "Creating"
// EKSFargateCreatedReason used when the profile is created.
EKSFargateCreatedReason = "Created"
// EKSFargateDeletedReason used when the profile is deleted.
EKSFargateDeletedReason = "Deleted"
// EKSFargateFailedReason used when the profile failed.
EKSFargateFailedReason = "Failed"
)
const (
// IAMNodegroupRolesReadyCondition condition reports on the successful
// reconciliation of EKS nodegroup iam roles.
IAMNodegroupRolesReadyCondition clusterv1alpha3.ConditionType = "IAMNodegroupRolesReady"
// IAMNodegroupRolesReconciliationFailedReason used to report failures while
// reconciling EKS nodegroup iam roles.
IAMNodegroupRolesReconciliationFailedReason = "IAMNodegroupRolesReconciliationFailed"
// IAMFargateRolesReadyCondition condition reports on the successful
// reconciliation of EKS nodegroup iam roles.
IAMFargateRolesReadyCondition clusterv1alpha3.ConditionType = "IAMFargateRolesReady"
// IAMFargateRolesReconciliationFailedReason used to report failures while
// reconciling EKS nodegroup iam roles.
IAMFargateRolesReconciliationFailedReason = "IAMFargateRolesReconciliationFailed"
)