mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Merge branch 'v1.1.0' of github.com:nirmata/kyverno into v1.1.0
This commit is contained in:
commit
b0e37d4b47
1 changed files with 6 additions and 2 deletions
|
@ -189,7 +189,9 @@ type PolicyViolationSpec struct {
|
|||
// ResourceSpec information to identify the resource
|
||||
type ResourceSpec struct {
|
||||
Kind string `json:"kind"`
|
||||
Name string `json:"name"`
|
||||
// Is not used in processing, but will is present for backward compatablitiy
|
||||
Namespace string `json:"namespace,omitempty"`
|
||||
Name string `json:"name"`
|
||||
}
|
||||
|
||||
// ViolatedRule stores the information regarding the rule
|
||||
|
@ -203,7 +205,9 @@ type ViolatedRule struct {
|
|||
// ManagedResourceSpec is used when the violations is created on resource owner
|
||||
// to determing the kind of child resource that caused the violation
|
||||
type ManagedResourceSpec struct {
|
||||
Kind string `json:"kind,omitempty"`
|
||||
Kind string `json:"kind,omitempty"`
|
||||
// Is not used in processing, but will is present for backward compatablitiy
|
||||
Namespace string `json:"namespace,omitempty"`
|
||||
CreationBlocked bool `json:"creationBlocked,omitempty"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue