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: Add --skip-tracking flag to allocator vacate (#119)
Adds a --skip-tracking flag which will make the whole operation async
and not wait for the deployments to complete moving nodes. Adds an
interactive warning which can be skipped with the `--force` flag.
Signed-off-by: Marc Lopez <marc5.12@outlook.com>
vacateAllocatorCmd.Flags().Bool("skip-tracking", false, "Skips tracking the vacate progress causing the command to return after the move operation has been executed. Not recommended.")
184
193
vacateAllocatorCmd.Flags().StringP("kind", "k", "", "Kind of workload to vacate (elasticsearch|kibana)")
185
194
vacateAllocatorCmd.Flags().StringArrayP("cluster", "c", nil, "Cluster IDs to include in the vacate")
186
195
vacateAllocatorCmd.Flags().StringArrayP("target", "t", nil, "Target allocator(s) on which to place the vacated workload")
--override-failsafe If false (the default) then the plan will fail out if it believes the requested sequence of operations can result in data loss - this flag will override some of these restraints. [true|false]
58
62
--skip-data-migration string Skips the data-migration operation on the specified cluster IDs. ONLY available when the cluster IDs are specified and --move-only is true. [true|false]
59
63
--skip-snapshot string Skips the snapshot operation on the specified cluster IDs. ONLY available when the cluster IDs are specified. [true|false]
64
+
--skip-tracking Skips tracking the vacate progress causing the command to return after the move operation has been executed. Not recommended.
60
65
-t, --target stringArray Target allocator(s) on which to place the vacated workload
0 commit comments