mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
9 lines
288 B
Go
9 lines
288 B
Go
|
package values
|
||
|
|
||
|
type Values struct {
|
||
|
Policies []Policy `json:"policies"`
|
||
|
GlobalValues map[string]string `json:"globalValues"`
|
||
|
NamespaceSelectors []NamespaceSelector `json:"namespaceSelector"`
|
||
|
Subresources []Subresource `json:"subresources"`
|
||
|
}
|