forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration_lifecycle.go
119 lines (100 loc) · 4.2 KB
/
configuration_lifecycle.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
/*
Copyright 2019 The Knative 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 v1
import (
"k8s.io/apimachinery/pkg/runtime/schema"
"knative.dev/pkg/apis"
)
var configCondSet = apis.NewLivingConditionSet()
// GetConditionSet retrieves the condition set for this resource. Implements the KRShaped interface.
func (*Configuration) GetConditionSet() apis.ConditionSet {
return configCondSet
}
// GetGroupVersionKind returns the GroupVersionKind.
func (*Configuration) GetGroupVersionKind() schema.GroupVersionKind {
return SchemeGroupVersion.WithKind("Configuration")
}
// IsReady returns true if the Status condition ConfigurationConditionReady
// is true and the latest spec has been observed.
func (c *Configuration) IsReady() bool {
cs := c.Status
return cs.ObservedGeneration == c.Generation &&
cs.GetCondition(ConfigurationConditionReady).IsTrue()
}
// IsFailed returns true if the resource has observed
// the latest generation and ready is false.
func (c *Configuration) IsFailed() bool {
cs := c.Status
return cs.ObservedGeneration == c.Generation &&
cs.GetCondition(ConfigurationConditionReady).IsFalse()
}
// IsLatestReadyRevisionNameUpToDate returns true if the Configuration is ready
// and LatestCreateRevisionName is equal to LatestReadyRevisionName. Otherwise
// it returns false.
func (c *Configuration) IsLatestReadyRevisionNameUpToDate() bool {
return c.IsReady() &&
c.Status.LatestCreatedRevisionName == c.Status.LatestReadyRevisionName
}
// InitializeConditions sets the initial values to the conditions.
func (cs *ConfigurationStatus) InitializeConditions() {
configCondSet.Manage(cs).InitializeConditions()
}
// GetTemplate returns a pointer to the relevant RevisionTemplateSpec field.
// It is never nil and should be exactly the specified template as guaranteed
// by validation.
func (cs *ConfigurationSpec) GetTemplate() *RevisionTemplateSpec {
return &cs.Template
}
// SetLatestCreatedRevisionName sets the LatestCreatedRevisionName on the
// revision and sets the ConfigurationConditionReady state to unknown if this
// does not match the LatestReadyRevisionName.
func (cs *ConfigurationStatus) SetLatestCreatedRevisionName(name string) {
cs.LatestCreatedRevisionName = name
if cs.LatestReadyRevisionName != name {
configCondSet.Manage(cs).
MarkUnknown(ConfigurationConditionReady, "", "")
}
}
// SetLatestReadyRevisionName sets the LatestReadyRevisionName on the revision.
// If this matches the LatestCreatedRevisionName, the
// ConfigurationConditionReady condition is set to true.
func (cs *ConfigurationStatus) SetLatestReadyRevisionName(name string) {
cs.LatestReadyRevisionName = name
if cs.LatestReadyRevisionName == cs.LatestCreatedRevisionName {
configCondSet.Manage(cs).MarkTrue(ConfigurationConditionReady)
}
}
// MarkLatestCreatedFailed marks the ConfigurationConditionReady condition to
// indicate that the Revision failed.
func (cs *ConfigurationStatus) MarkLatestCreatedFailed(name, message string) {
configCondSet.Manage(cs).MarkFalse(
ConfigurationConditionReady,
"RevisionFailed",
"Revision %q failed with message: %s.", name, message)
}
// MarkRevisionCreationFailed marks the ConfigurationConditionReady condition
// to indicate the Revision creation failed.
func (cs *ConfigurationStatus) MarkRevisionCreationFailed(message string) {
configCondSet.Manage(cs).MarkFalse(
ConfigurationConditionReady,
"RevisionFailed",
"Revision creation failed with message: %s.", message)
}
// MarkLatestReadyDeleted marks the ConfigurationConditionReady condition to
// indicate that the Revision was deleted.
func (cs *ConfigurationStatus) MarkLatestReadyDeleted() {
configCondSet.Manage(cs).MarkFalse(
ConfigurationConditionReady,
"RevisionDeleted",
"Revision %q was deleted.", cs.LatestReadyRevisionName)
}