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