Skip to content

Commit

Permalink
Add status conditions helpers (#1143)
Browse files Browse the repository at this point in the history
* pkg/status: add status conditions helpers
* doc/user-guide.md: added section about managing CR status conditions
  • Loading branch information
joelanford authored Feb 4, 2020
1 parent be9a9eb commit 1b2cb39
Show file tree
Hide file tree
Showing 2 changed files with 467 additions and 0 deletions.
204 changes: 204 additions & 0 deletions status/conditions.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
// Copyright 2020 The Operator-SDK 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 status

import (
"encoding/json"
"sort"

corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
kubeclock "k8s.io/apimachinery/pkg/util/clock"
)

// clock is used to set status condition timestamps.
// This variable makes it easier to test conditions.
var clock kubeclock.Clock = &kubeclock.RealClock{}

// ConditionType is the type of the condition and is typically a CamelCased
// word or short phrase.
//
// Condition types should indicate state in the "abnormal-true" polarity. For
// example, if the condition indicates when a policy is invalid, the "is valid"
// case is probably the norm, so the condition should be called "Invalid".
type ConditionType string

// ConditionReason is intended to be a one-word, CamelCase representation of
// the category of cause of the current status. It is intended to be used in
// concise output, such as one-line kubectl get output, and in summarizing
// occurrences of causes.
type ConditionReason string

// Condition represents an observation of an object's state. Conditions are an
// extension mechanism intended to be used when the details of an observation
// are not a priori known or would not apply to all instances of a given Kind.
//
// Conditions should be added to explicitly convey properties that users and
// components care about rather than requiring those properties to be inferred
// from other observations. Once defined, the meaning of a Condition can not be
// changed arbitrarily - it becomes part of the API, and has the same
// backwards- and forwards-compatibility concerns of any other part of the API.
type Condition struct {
Type ConditionType `json:"type"`
Status corev1.ConditionStatus `json:"status"`
Reason ConditionReason `json:"reason,omitempty"`
Message string `json:"message,omitempty"`
LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty"`
}

// IsTrue Condition whether the condition status is "True".
func (c Condition) IsTrue() bool {
return c.Status == corev1.ConditionTrue
}

// IsFalse returns whether the condition status is "False".
func (c Condition) IsFalse() bool {
return c.Status == corev1.ConditionFalse
}

// IsUnknown returns whether the condition status is "Unknown".
func (c Condition) IsUnknown() bool {
return c.Status == corev1.ConditionUnknown
}

// DeepCopy returns a deep copy of the condition
func (c *Condition) DeepCopy() *Condition {
if c == nil {
return nil
}
out := *c
return &out
}

// Conditions is a set of Condition instances.
//
// +kubebuilder:validation:Type=array
type Conditions map[ConditionType]Condition

// NewConditions initializes a set of conditions with the given list of
// conditions.
func NewConditions(conds ...Condition) Conditions {
conditions := Conditions{}
for _, c := range conds {
conditions.SetCondition(c)
}
return conditions
}

// IsTrueFor searches the set of conditions for a condition with the given
// ConditionType. If found, it returns `condition.IsTrue()`. If not found,
// it returns false.
func (conditions Conditions) IsTrueFor(t ConditionType) bool {
if condition, ok := conditions[t]; ok {
return condition.IsTrue()
}
return false
}

// IsFalseFor searches the set of conditions for a condition with the given
// ConditionType. If found, it returns `condition.IsFalse()`. If not found,
// it returns false.
func (conditions Conditions) IsFalseFor(t ConditionType) bool {
if condition, ok := conditions[t]; ok {
return condition.IsFalse()
}
return false
}

// IsUnknownFor searches the set of conditions for a condition with the given
// ConditionType. If found, it returns `condition.IsUnknown()`. If not found,
// it returns true.
func (conditions Conditions) IsUnknownFor(t ConditionType) bool {
if condition, ok := conditions[t]; ok {
return condition.IsUnknown()
}
return true
}

// SetCondition adds (or updates) the set of conditions with the given
// condition. It returns a boolean value indicating whether the set condition
// is new or was a change to the existing condition with the same type.
func (conditions *Conditions) SetCondition(newCond Condition) bool {
if conditions == nil || *conditions == nil {
*conditions = make(map[ConditionType]Condition)
}
newCond.LastTransitionTime = metav1.Time{Time: clock.Now()}

if condition, ok := (*conditions)[newCond.Type]; ok {
// If the condition status didn't change, use the existing
// condition's last transition time.
if condition.Status == newCond.Status {
newCond.LastTransitionTime = condition.LastTransitionTime
}
changed := condition.Status != newCond.Status ||
condition.Reason != newCond.Reason ||
condition.Message != newCond.Message
(*conditions)[newCond.Type] = newCond
return changed
}
(*conditions)[newCond.Type] = newCond
return true
}

// GetCondition searches the set of conditions for the condition with the given
// ConditionType and returns it. If the matching condition is not found,
// GetCondition returns nil.
func (conditions Conditions) GetCondition(t ConditionType) *Condition {
if condition, ok := conditions[t]; ok {
return &condition
}
return nil
}

// RemoveCondition removes the condition with the given ConditionType from
// the conditions set. If no condition with that type is found, RemoveCondition
// returns without performing any action. If the passed condition type is not
// found in the set of conditions, RemoveCondition returns false.
func (conditions *Conditions) RemoveCondition(t ConditionType) bool {
if conditions == nil || *conditions == nil {
return false
}
if _, ok := (*conditions)[t]; ok {
delete(*conditions, t)
return true
}
return false
}

// MarshalJSON marshals the set of conditions as a JSON array, sorted by
// condition type.
func (conditions Conditions) MarshalJSON() ([]byte, error) {
conds := []Condition{}
for _, condition := range conditions {
conds = append(conds, condition)
}
sort.Slice(conds, func(a, b int) bool {
return conds[a].Type < conds[b].Type
})
return json.Marshal(conds)
}

// UnmarshalJSON unmarshals the JSON data into the set of Conditions.
func (conditions *Conditions) UnmarshalJSON(data []byte) error {
*conditions = make(map[ConditionType]Condition)
conds := []Condition{}
if err := json.Unmarshal(data, &conds); err != nil {
return err
}
for _, condition := range conds {
(*conditions)[condition.Type] = condition
}
return nil
}
Loading

0 comments on commit 1b2cb39

Please sign in to comment.