mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
11 lines
262 B
Go
11 lines
262 B
Go
|
package v1alpha1
|
||
|
|
||
|
// NamespaceSelector declares labels for a given namespace
|
||
|
type NamespaceSelector struct {
|
||
|
// Name is the namespace name
|
||
|
Name string `json:"name"`
|
||
|
|
||
|
// Labels are the labels for the given namespace
|
||
|
Labels map[string]string `json:"labels"`
|
||
|
}
|