generated from aws-controllers-k8s/controller-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 12
/
conditions.go
116 lines (106 loc) · 3.47 KB
/
conditions.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
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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 broker
import (
"errors"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
ackv1alpha1 "github.com/aws-controllers-k8s/runtime/apis/core/v1alpha1"
ackrequeue "github.com/aws-controllers-k8s/runtime/pkg/requeue"
)
var (
requeueWaitWhileCreating = ackrequeue.NeededAfter(
errors.New("Broker in CREATION_IN_PROGRESS state, cannot be modified until RUNNING."),
ackrequeue.DefaultRequeueAfterDuration,
)
requeueWaitWhileDeleting = ackrequeue.NeededAfter(
errors.New("Broker in DELETION_IN_PROGRESS state, cannot be modified or deleted."),
ackrequeue.DefaultRequeueAfterDuration,
)
)
// getSyncedCondition returns the Condition in the resource's Conditions
// collection that is of type ConditionTypeResourceSynced. If no such condition
// is found, returns nil.
//
// TODO(jaypipes): Move to ACK code-gen templates.
func getSyncedCondition(r *resource) *ackv1alpha1.Condition {
return getConditionOfType(r, ackv1alpha1.ConditionTypeResourceSynced)
}
// getTerminalCondition returns the Condition in the resource's Conditions
// collection that is of type ConditionTypeTerminal. If no such condition is
// found, returns nil.
//
// TODO(jaypipes): Move to ACK code-gen templates.
func getTerminalCondition(r *resource) *ackv1alpha1.Condition {
return getConditionOfType(r, ackv1alpha1.ConditionTypeTerminal)
}
// getConditionOfType returns the Condition in the resource's Conditions
// collection of the supplied type. If no such condition is found, returns nil.
//
// TODO(jaypipes): Move to ACK code-gen templates.
func getConditionOfType(
r *resource,
condType ackv1alpha1.ConditionType,
) *ackv1alpha1.Condition {
for _, condition := range r.ko.Status.Conditions {
if condition.Type == condType {
return condition
}
}
return nil
}
// setSyncedCondition sets the resource's Condition of type
// ConditionTypeResourceSynced to the supplied status, optional message and
// reason.
//
// TODO(jaypipes): Move to ACK code-gen templates.
func setSyncedCondition(
r *resource,
status corev1.ConditionStatus,
message *string,
reason *string,
) {
c := getSyncedCondition(r)
if c == nil {
c = &ackv1alpha1.Condition{
Type: ackv1alpha1.ConditionTypeResourceSynced,
}
r.ko.Status.Conditions = append(r.ko.Status.Conditions, c)
}
now := metav1.Now()
c.LastTransitionTime = &now
c.Status = status
}
// setTerminalCondition sets the resource's Condition of type
// ConditionTypeTerminal to the supplied status, optional message and reason.
//
// TODO(jaypipes): Move to ACK code-gen templates.
func setTerminalCondition(
r *resource,
status corev1.ConditionStatus,
message *string,
reason *string,
) {
c := getTerminalCondition(r)
if c == nil {
c = &ackv1alpha1.Condition{
Type: ackv1alpha1.ConditionTypeTerminal,
}
r.ko.Status.Conditions = append(r.ko.Status.Conditions, c)
}
now := metav1.Now()
c.LastTransitionTime = &now
c.Status = status
c.Message = message
c.Reason = reason
}