1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 21:32:10 +00:00

cis: modify skip, conditions

This commit is contained in:
Murali Paluru
2019-12-12 14:14:43 -08:00
committed by Alena Prokharchyk
parent 16934037d6
commit c2fa09c78a
3 changed files with 30 additions and 3 deletions

21
condition/constants.go Normal file
View File

@@ -0,0 +1,21 @@
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"
)