1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00

fixed duplicate name

This commit is contained in:
NoSkillGirl 2020-09-09 20:17:20 +05:30
parent c7adf66fda
commit b1a2ab398b

View file

@ -243,7 +243,7 @@ type ResourceDescription struct {
// Specifies list of namespaces
Namespaces []string `json:"namespaces,omitempty" yaml:"namespaces,omitempty"`
// Specifies map of annotations
Annotations map[string]string `json:"annotations,omitempty" yaml:"namespaces,omitempty"`
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
// Specifies the set of selectors
Selector *metav1.LabelSelector `json:"selector,omitempty" yaml:"selector,omitempty"`
}