mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* refactor: remove a couple of old util funcs Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * refactor: policy controller package Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * refactor Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
13 lines
266 B
Go
13 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
|
|
)
|