-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAISTRA-2518 add conditions to federation status
Signed-off-by: rcernich <[email protected]>
- Loading branch information
Showing
11 changed files
with
276 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
// Copyright Red Hat, Inc. | ||
// | ||
// 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 ( | ||
"time" | ||
|
||
corev1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
type StatusType struct { | ||
// Represents the latest available observations of a federation's current state. | ||
// +optional | ||
// +patchMergeKey=type | ||
// +patchStrategy=merge | ||
Conditions []Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,10,rep,name=conditions"` | ||
} | ||
|
||
type ConditionType string | ||
|
||
const ( | ||
// Connected indicates that one or more instances of istiod are currently | ||
// connected to the remote mesh. | ||
ConnectedServiceMeshPeerCondition ConditionType = "Connected" | ||
// Degraded indicates that one or more instances of istiod are currently | ||
// not connected to the remote mesh. | ||
DegradedServiceMeshPeerCondition ConditionType = "Degraded" | ||
// Serving indicates that one or more instances of istiod is currently | ||
// serving discovery information to a remote mesh. | ||
ServingServiceMeshPeerCondition ConditionType = "Degraded" | ||
// Ready indicates that all instances of istiod are connected to the remote | ||
// mesh. | ||
ReadyServiceMeshPeerCondition ConditionType = "Ready" | ||
// Exporting indicates that the mesh is exporting services to the remote | ||
// mesh. | ||
ExportingExportedServiceSetCondition ConditionType = "Ready" | ||
// Importing indicates that the mesh is importing services from the remote | ||
// mesh. | ||
ImportingImportedServiceSetCondition ConditionType = "Ready" | ||
) | ||
|
||
const ( | ||
ConnectedConditionReason = "Connected" | ||
NotConnectedConditionReason = "NotConnected" | ||
DegradedConditionReason = "Degraded" | ||
NotDegradedConditionReason = "NotDegraded" | ||
ServingConditionReason = "Serving" | ||
NotServingConditionReason = "NotServing" | ||
ReadyConditionReason = "Ready" | ||
NotReadyConditionReason = "NotReady" | ||
ExportingConditionReason = "Exporting" | ||
NoRulesMatchedConditionReason = "NoRulesMatched" | ||
NoRulesDefinedConditionReason = "NoRulesDefined" | ||
ImportingConditionReason = "Importing" | ||
NoExportedServicesConditionReason = "NoExportedServices" | ||
) | ||
|
||
// Condition describes the state of a federation at a certain point. | ||
type Condition struct { | ||
// Type of federation condition. | ||
Type ConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=ConditionType"` | ||
// Status of the condition, one of True, False, Unknown. | ||
Status corev1.ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"` | ||
// Last time the condition transitioned from one status to another. | ||
// +optional | ||
LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,3,opt,name=lastTransitionTime"` | ||
// The reason for the condition's last transition. | ||
// +optional | ||
Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"` | ||
// A human readable message indicating details about the transition. | ||
// +optional | ||
Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"` | ||
} | ||
|
||
// GetCondition removes a condition for the list of conditions | ||
func (s *StatusType) GetCondition(conditionType ConditionType) Condition { | ||
if s == nil { | ||
return Condition{Type: conditionType, Status: corev1.ConditionUnknown} | ||
} | ||
for i := range s.Conditions { | ||
if s.Conditions[i].Type == conditionType { | ||
return s.Conditions[i] | ||
} | ||
} | ||
return Condition{Type: conditionType, Status: corev1.ConditionUnknown} | ||
} | ||
|
||
// SetCondition sets a specific condition in the list of conditions | ||
func (s *StatusType) SetCondition(condition Condition) *StatusType { | ||
if s == nil { | ||
return nil | ||
} | ||
// These only get serialized out to the second. This can break update | ||
// skipping, as the time in the resource returned from the client may not | ||
// match the time in our cached status during a reconcile. We truncate here | ||
// to save any problems down the line. | ||
now := metav1.NewTime(time.Now().Truncate(time.Second)) | ||
for i, prevCondition := range s.Conditions { | ||
if prevCondition.Type == condition.Type { | ||
if prevCondition.Status != condition.Status { | ||
condition.LastTransitionTime = now | ||
} else { | ||
condition.LastTransitionTime = prevCondition.LastTransitionTime | ||
} | ||
s.Conditions[i] = condition | ||
return s | ||
} | ||
} | ||
|
||
// If the condition does not exist, | ||
// initialize the lastTransitionTime | ||
condition.LastTransitionTime = now | ||
s.Conditions = append(s.Conditions, condition) | ||
return s | ||
} | ||
|
||
// RemoveCondition removes a condition for the list of conditions | ||
func (s *StatusType) RemoveCondition(conditionType ConditionType) *StatusType { | ||
if s == nil { | ||
return nil | ||
} | ||
for i := range s.Conditions { | ||
if s.Conditions[i].Type == conditionType { | ||
s.Conditions = append(s.Conditions[:i], s.Conditions[i+1:]...) | ||
return s | ||
} | ||
} | ||
return s | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters