Define member cluster available condition.
This commit is contained in:
parent
786538765a
commit
12eed97771
|
@ -90,6 +90,12 @@ type LocalSecretReference struct {
|
|||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// Define valid conditions of a member cluster.
|
||||
const (
|
||||
// ClusterConditionReady means the cluster is healthy and ready to accept workloads.
|
||||
ClusterConditionReady = "Ready"
|
||||
)
|
||||
|
||||
// MemberClusterStatus contains information about the current status of a
|
||||
// cluster updated periodically by cluster controller.
|
||||
type MemberClusterStatus struct {
|
||||
|
|
Loading…
Reference in New Issue