Update the help mesage of interactive flag in kubectl delete

Kubernetes-commit: 90e68e3a024cf3793a8a6aae5dcfbf7750f4c6e1
This commit is contained in:
Kazuki Suda 2023-12-21 21:42:23 +09:00 committed by Kubernetes Publisher
parent 8b51c4efe3
commit 2f8da6f89c
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ func (f *DeleteFlags) AddFlags(cmd *cobra.Command) {
cmd.Flags().StringVar(f.Raw, "raw", *f.Raw, "Raw URI to DELETE to the server. Uses the transport specified by the kubeconfig file.")
}
if f.Interactive != nil {
cmd.Flags().BoolVarP(f.Interactive, "interactive", "i", *f.Interactive, "If true, delete resource only when user confirms. This flag is in Alpha.")
cmd.Flags().BoolVarP(f.Interactive, "interactive", "i", *f.Interactive, "If true, delete resource only when user confirms.")
}
}