mirror of https://github.com/k3s-io/k3s
Merge pull request #65030 from deads2k/cli-74-experimental
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. mark kubectl wait as experimental Per @smarterclayton comment in https://github.com/kubernetes/kubernetes/pull/64034 /assign @smarterclaytonpull/8/head
commit
b05a61e299
|
@ -73,7 +73,7 @@ func NewCmdWait(restClientGetter genericclioptions.RESTClientGetter, streams gen
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "wait resource.group/name [--for=delete|--for condition=available]",
|
Use: "wait resource.group/name [--for=delete|--for condition=available]",
|
||||||
DisableFlagsInUseLine: true,
|
DisableFlagsInUseLine: true,
|
||||||
Short: "Wait for one condition on one or many resources",
|
Short: "Experimental: Wait for one condition on one or many resources",
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
o, err := flags.ToOptions(args)
|
o, err := flags.ToOptions(args)
|
||||||
cmdutil.CheckErr(err)
|
cmdutil.CheckErr(err)
|
||||||
|
|
Loading…
Reference in New Issue