Fix apiGroups and resources (need "s")

This commit is contained in:
2022-06-01 16:05:34 +02:00
parent aaf0e3e9ed
commit f08a6ec9a7

View File

@@ -1,8 +1,8 @@
package helm
type Rule struct {
ApiGroup []string `yaml:"apiGroup,omitempty"`
Resources []string `yaml:"resource,omitempty"`
ApiGroup []string `yaml:"apiGroups,omitempty"`
Resources []string `yaml:"resources,omitempty"`
Verbs []string `yaml:"verbs,omitempty"`
}