mirror of
https://github.com/rancher/types.git
synced 2025-06-27 14:06:49 +00:00
22 lines
311 B
Go
22 lines
311 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"
|
||
|
)
|