1
0
mirror of https://github.com/rancher/types.git synced 2025-06-27 22:16:48 +00:00
types/condition/constants.go

27 lines
419 B
Go
Raw Normal View History

2019-12-12 22:14:43 +00:00
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"
2020-02-21 17:36:42 +00:00
// generic type
// these will not trigger any state change on the object
Alerted cond.Cond = "Alerted"
2019-12-12 22:14:43 +00:00
)