mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
14 lines
266 B
Go
14 lines
266 B
Go
|
package policy
|
||
|
|
||
|
// Condition defines condition type
|
||
|
type Condition int
|
||
|
|
||
|
const (
|
||
|
// NotEvaluate to not evaluate condition
|
||
|
NotEvaluate Condition = 0
|
||
|
// Process to evaluate condition
|
||
|
Process Condition = 1
|
||
|
// Skip to ignore/skip the condition
|
||
|
Skip Condition = 2
|
||
|
)
|