We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbaede commit b586c99Copy full SHA for b586c99
pkg/controllers/options/tagging_controller.go
@@ -58,6 +58,10 @@ func (o *TaggingControllerOptions) Validate() error {
58
return fmt.Errorf("--tagging-controller-burst-limit should not be less than zero")
59
}
60
61
+ if o.WorkerCount <= 0 {
62
+ return fmt.Errorf("--tagging-controller-concurrent-node-syncs must be a positive number")
63
+ }
64
+
65
for _, r := range o.Resources {
66
for _, resource := range SupportedResources {
67
if r != resource {
0 commit comments