-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathcondition.go
205 lines (179 loc) · 6.5 KB
/
condition.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
package api
import (
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
/*
conditions:
- lastTransitionTime: "2020-12-15T20:46:55Z"
status: "True"
message: the following fields are missing in the Secret secret: %v
reason: AtlasCredentialsNotProvided
type: ProjectReady
- lastTransitionTime: "2020-12-15T20:46:55Z"
message: NOT_ALLOWED. You don't have enough permissions to perform the operation
reason: AtlasApiError
status: "False"
type: IPAccessListReady
- privateLink
- lastTransitionTime: "2020-12-15T20:46:55Z"
status: "True"
type: Ready
*/
type ConditionType string
const (
ReadyType ConditionType = "Ready"
ValidationSucceeded ConditionType = "ValidationSucceeded"
)
// AtlasProject condition types
const (
ProjectReadyType ConditionType = "ProjectReady"
IPAccessListReadyType ConditionType = "IPAccessListReady"
MaintenanceWindowReadyType ConditionType = "MaintenanceWindowReady"
PrivateEndpointServiceReadyType ConditionType = "PrivateEndpointServiceReady"
PrivateEndpointReadyType ConditionType = "PrivateEndpointReady"
NetworkPeerReadyType ConditionType = "NetworkPeerReady"
CloudProviderIntegrationReadyType ConditionType = "CloudProviderIntegrationReady"
IntegrationReadyType ConditionType = "ThirdPartyIntegrationReady"
AlertConfigurationReadyType ConditionType = "AlertConfigurationReady"
EncryptionAtRestReadyType ConditionType = "EncryptionAtRestReady"
AuditingReadyType ConditionType = "AuditingReady"
ProjectSettingsReadyType ConditionType = "ProjectSettingsReady"
ProjectCustomRolesReadyType ConditionType = "ProjectCustomRolesReady"
ProjectTeamsReadyType ConditionType = "ProjectTeamsReady"
SearchIndexesReadyType ConditionType = "AtlasSearchIndexesReady"
BackupComplianceReadyType ConditionType = "BackupCompliancePolicyReady"
X509AuthReadyType ConditionType = "X509AuthReady"
)
// AtlasDeployment condition types
const (
DeploymentReadyType ConditionType = "DeploymentReady"
ServerlessPrivateEndpointReadyType ConditionType = "ServerlessPrivateEndpointReady"
ManagedNamespacesReadyType ConditionType = "ManagedNamespacesReady"
CustomZoneMappingReadyType ConditionType = "CustomZoneMappingReady"
SearchNodesReadyType ConditionType = "SearchNodesReady"
)
// AtlasDatabaseUser condition types
const (
DatabaseUserReadyType ConditionType = "DatabaseUserReady"
)
// Atlas Data Federation condition types
const (
DataFederationReadyType ConditionType = "DataFederationReady"
DataFederationPEReadyType ConditionType = "DataFederationPrivateEndpointsReady"
)
// Atlas Federated Auth condition types
const (
FederatedAuthReadyType ConditionType = "FederatedAuthReady"
FederatedAuthRolesReadyType ConditionType = "RolesReady"
)
// Atlas Streams condition types
const (
StreamInstanceReadyType ConditionType = "StreamInstanceReady"
StreamConnectionReadyType ConditionType = "StreamConnectionReady"
)
const (
SearchIndexesNamesAreNotUnique = "SearchIndexesNamesAreNotUnique"
SearchIndexesNotReady = "SearchIndexesNotReady"
)
// Atlas Teams condition types
const (
TeamUnmanaged ConditionType = "TeamUnmanaged"
)
// Atlas Private Endpoint condition types
const (
PrivateEndpointServiceReady ConditionType = "PrivateEndpointServiceReady"
PrivateEndpointReady ConditionType = "PrivateEndpointReady"
)
// Atlas IP Access List condition types
const (
IPAccessListReady ConditionType = "IPAccessListReady"
)
// Atlas Network Container condition types
const (
NetworkContainerReady ConditionType = "NetworkContainerReady"
)
// Generic condition type
const (
ResourceVersionStatus ConditionType = "ResourceVersionIsValid"
)
// Condition describes the state of an Atlas Custom Resource at a certain point.
type Condition struct {
// Type of Atlas Custom Resource condition.
Type ConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown.
Status corev1.ConditionStatus `json:"status"`
// Last time the condition transitioned from one status to another.
// +optional
LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty"`
// The reason for the condition's last transition.
// +optional
Reason string `json:"reason,omitempty"`
// A human readable message indicating details about the transition.
// +optional
Message string `json:"message,omitempty"`
}
// TrueCondition returns the Condition that has the 'Status' set to 'true' and 'Type' to 'conditionType'.
// It explicitly omits the 'Reason' and 'Message' fields.
func TrueCondition(conditionType ConditionType) Condition {
return Condition{
Type: conditionType,
Status: corev1.ConditionTrue,
LastTransitionTime: metav1.Now(),
}
}
// FalseCondition returns the Condition that has the 'Status' set to 'false' and 'Type' to 'conditionType'.
// The reason and message can be provided optionally
func FalseCondition(conditionType ConditionType) Condition {
condition := Condition{
Type: conditionType,
Status: corev1.ConditionFalse,
LastTransitionTime: metav1.Now(),
}
return condition
}
func HasConditionType(typ ConditionType, source []Condition) bool {
for i := range source {
if source[i].Type == typ {
return true
}
}
return false
}
// EnsureConditionExists adds or updates the condition in the copy of a 'source' slice
func EnsureConditionExists(condition Condition, source []Condition) []Condition {
condition.LastTransitionTime = metav1.Now()
target := make([]Condition, len(source))
copy(target, source)
for i, c := range source {
if c.Type == condition.Type {
// We don't update the last transition time in case status hasn't changed.
if c.Status == condition.Status {
condition.LastTransitionTime = c.LastTransitionTime
}
//goland:noinspection GoNilness
target[i] = condition
return target
}
}
// Condition not found - appending
target = append(target, condition)
return target
}
func RemoveConditionIfExists(conditionType ConditionType, source []Condition) []Condition {
updatedConditions := []Condition{}
for _, cond := range source {
if cond.Type != conditionType {
updatedConditions = append(updatedConditions, cond)
}
}
return updatedConditions
}
func (c Condition) WithReason(reason string) Condition {
c.Reason = reason
return c
}
func (c Condition) WithMessageRegexp(msg string) Condition {
c.Message = msg
return c
}