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

22 lines
311 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"
)