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
Copy file name to clipboardExpand all lines: operator/cmd/run/run.go
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,6 @@ type RunOptions struct {
84
84
enableRedpandaControllersbool
85
85
86
86
enableV2NodepoolControllerbool
87
-
enableShadowLinksControllerbool
88
87
enableConsoleControllerbool
89
88
managerOptions ctrl.Options
90
89
clusterDomainstring
@@ -141,7 +140,6 @@ func (o *RunOptions) BindFlags(cmd *cobra.Command) {
141
140
// Controller flags.
142
141
cmd.Flags().BoolVar(&o.enableConsoleController, "enable-console", true, "Specifies whether or not to enabled the redpanda Console controller")
143
142
cmd.Flags().BoolVar(&o.enableV2NodepoolController, "enable-v2-nodepools", false, "Specifies whether or not to enabled the v2 nodepool controller")
144
-
cmd.Flags().BoolVar(&o.enableShadowLinksController, "enable-shadowlinks", false, "Specifies whether or not to enabled the shadow links controller")
145
143
cmd.Flags().BoolVar(&o.enableVectorizedControllers, "enable-vectorized-controllers", false, "Specifies whether or not to enabled the legacy controllers for resources in the Vectorized Group (Also known as V1 operator mode)")
146
144
cmd.Flags().BoolVar(&o.enableRedpandaControllers, "enable-redpanda-controllers", true, "Specifies whether or not to enabled the Redpanda cluster controllers")
147
145
cmd.Flags().StringVar(&o.clusterDomain, "cluster-domain", "cluster.local", "Set the Kubernetes local domain (Kubelet's --cluster-domain)")
@@ -185,6 +183,7 @@ func (o *RunOptions) BindFlags(cmd *cobra.Command) {
185
183
cmd.Flags().Bool("force-defluxed-mode", false, "A deprecated and unused flag")
186
184
cmd.Flags().Bool("allow-pvc-deletion", false, "Deprecated: Ignored if specified")
187
185
cmd.Flags().Bool("operator-mode", true, "A deprecated and unused flag")
186
+
cmd.Flags().Bool("enable-shadowlinks", false, "Specifies whether or not to enabled the shadow links controller")
0 commit comments