mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-04-26 10:18:50 +02:00
Initial v1.0.0 commit
This commit is contained in:
18
vendor/github.com/rancher/wrangler/pkg/genericcondition/condition.go
generated
vendored
Normal file
18
vendor/github.com/rancher/wrangler/pkg/genericcondition/condition.go
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
package genericcondition
|
||||
|
||||
import v1 "k8s.io/api/core/v1"
|
||||
|
||||
type GenericCondition struct {
|
||||
// Type of cluster condition.
|
||||
Type string `json:"type"`
|
||||
// Status of the condition, one of True, False, Unknown.
|
||||
Status v1.ConditionStatus `json:"status"`
|
||||
// The last time this condition was updated.
|
||||
LastUpdateTime string `json:"lastUpdateTime,omitempty"`
|
||||
// Last time the condition transitioned from one status to another.
|
||||
LastTransitionTime string `json:"lastTransitionTime,omitempty"`
|
||||
// The reason for the condition's last transition.
|
||||
Reason string `json:"reason,omitempty"`
|
||||
// Human-readable message indicating details about last transition
|
||||
Message string `json:"message,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user