You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().DurationVar(&options.Interval, "interval", 0, "If non-zero, re-apply the channel on this interval until interrupted (e.g. 60s)")
70
70
cmd.Flags().StringVar(&options.NodeName, "node-name", "", "If set, patch the named node with the mandatory control-plane labels each iteration; typically supplied via the downward API.")
71
-
cmd.Flags().StringVar(&options.NodeLabel, "node-label", "", "If set, patch the named node with this label each iteration; typically supplied via the downward API.")
71
+
cmd.Flags().StringVar(&options.NodeLabels, "node-labels", "", "If set, patch the named node with each of the labels each iteration; typically supplied via the downward API.")
72
72
73
73
returncmd
74
74
}
@@ -82,7 +82,7 @@ func runApplyChannelIteration(ctx context.Context, f *ChannelsFactory, out io.Wr
82
82
labelerClient, err:=f.KubernetesClient()
83
83
iferr!=nil {
84
84
merr=multierr.Append(merr, fmt.Errorf("building kubernetes client for node labeler: %w", err))
0 commit comments