mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
ffd2179b03
* initial commit * background policy validation * correct message * skip non-background policy process for add/update * add Generate Request CR * generate Request Generator Initial * test generate request CR generation * initial commit gr generator * generate controller initial framework * add crd for generate request * gr cleanup controller initial commit * cleanup controller initial * generate mid-commit * generate rule processing * create PV on generate error * embed resource type * testing phase 1- generate resources with variable substitution * fix tests * comment broken test #586 * add printer column for state * return if existing resource for clone * set resync time to 2 mins & remove resource version check in update handler for gr * generate events for reporting * fix logs * cleanup * CR fixes * fix logs
24 lines
514 B
Go
24 lines
514 B
Go
package event
|
|
|
|
//Reason types of Event Reasons
|
|
type Reason int
|
|
|
|
const (
|
|
//PolicyViolation there is a violation of policy
|
|
PolicyViolation Reason = iota
|
|
//PolicyApplied policy applied
|
|
PolicyApplied
|
|
//RequestBlocked the request to create/update the resource was blocked( generated from admission-controller)
|
|
RequestBlocked
|
|
//PolicyFailed policy failed
|
|
PolicyFailed
|
|
)
|
|
|
|
func (r Reason) String() string {
|
|
return [...]string{
|
|
"PolicyViolation",
|
|
"PolicyApplied",
|
|
"RequestBlocked",
|
|
"PolicyFailed",
|
|
}[r]
|
|
}
|