1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 13:18:20 +00:00
Files
types/condition/constants.go

22 lines
311 B
Go
Raw Normal View History

2019-12-12 14:14:43 -08: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"
)