1
0
mirror of https://github.com/rancher/types.git synced 2025-06-20 02:41:53 +00:00
types/condition/constants.go
2020-02-21 23:06:42 +05:30

27 lines
419 B
Go

package condition
import (
cond "github.com/rancher/norman/condition"
)
const (
// transition type
Created cond.Cond = "Created"
RunCompleted cond.Cond = "RunCompleted"
// done type
Completed cond.Cond = "Completed"
Ready cond.Cond = "Ready"
// error type
Failed cond.Cond = "Failed"
// generic type
// these will not trigger any state change on the object
Alerted cond.Cond = "Alerted"
)