cmd.Flags().StringVarP(&options.ContainerName,"container","c","","Container name. If omitted, the first container in the pod will be chosen")
cmd.Flags().BoolVarP(&options.Stdin,"stdin","i",false,"Pass stdin to the container")
cmd.Flags().BoolVarP(&options.TTY,"tty","t",false,"Stdin is a TTY")
cmd.Flags().StringVarP(&options.ContainerName,"container","c",options.ContainerName,"Container name. If omitted, the first container in the pod will be chosen")
cmd.Flags().BoolVarP(&options.Stdin,"stdin","i",options.Stdin,"Pass stdin to the container")
cmd.Flags().BoolVarP(&options.TTY,"tty","t",options.TTY,"Stdin is a TTY")
cmd.Flags().StringVarP(&options.Selector,"selector","l","","Selector (label query) to filter on, not including uninitialized ones.")
cmd.Flags().StringVarP(&options.Selector,"selector","l",options.Selector,"Selector (label query) to filter on, not including uninitialized ones.")
cmd.Flags().BoolVar(&options.DeleteAll,"all",options.DeleteAll,"Delete all resources, including uninitialized ones, in the namespace of the specified resource types.")
cmd.Flags().BoolVar(&options.IgnoreNotFound,"ignore-not-found",false,"Treat \"resource not found\" as a successful delete. Defaults to \"true\" when --all is specified.")
cmd.Flags().BoolVar(&options.Cascade,"cascade",true,"If true, cascade the deletion of the resources managed by this resource (e.g. Pods created by a ReplicationController). Default true.")
cmd.Flags().IntVar(&options.GracePeriod,"grace-period",-1,"Period of time in seconds given to the resource to terminate gracefully. Ignored if negative.")
cmd.Flags().BoolVar(&options.DeleteNow,"now",false,"If true, resources are signaled for immediate shutdown (same as --grace-period=1).")
cmd.Flags().BoolVar(&options.ForceDeletion,"force",false,"Immediate deletion of some resources may result in inconsistency or data loss and requires confirmation.")
cmd.Flags().DurationVar(&options.Timeout,"timeout",0,"The length of time to wait before giving up on a delete, zero means determine a timeout from the size of the object")
cmd.Flags().BoolVar(&options.IgnoreNotFound,"ignore-not-found",options.IgnoreNotFound,"Treat \"resource not found\" as a successful delete. Defaults to \"true\" when --all is specified.")
cmd.Flags().BoolVar(&options.Cascade,"cascade",options.Cascade,"If true, cascade the deletion of the resources managed by this resource (e.g. Pods created by a ReplicationController). Default true.")
cmd.Flags().IntVar(&options.GracePeriod,"grace-period",options.GracePeriod,"Period of time in seconds given to the resource to terminate gracefully. Ignored if negative.")
cmd.Flags().BoolVar(&options.DeleteNow,"now",options.DeleteNow,"If true, resources are signaled for immediate shutdown (same as --grace-period=1).")
cmd.Flags().BoolVar(&options.ForceDeletion,"force",options.ForceDeletion,"Immediate deletion of some resources may result in inconsistency or data loss and requires confirmation.")
cmd.Flags().DurationVar(&options.Timeout,"timeout",options.Timeout,"The length of time to wait before giving up on a delete, zero means determine a timeout from the size of the object")
cmd.Flags().BoolVar(&options.Force,"force",false,"Continue even if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet.")
cmd.Flags().BoolVar(&options.DeleteLocalData,"delete-local-data",false,"Continue even if there are pods using emptyDir (local data that will be deleted when the node is drained).")
cmd.Flags().IntVar(&options.GracePeriodSeconds,"grace-period",-1,"Period of time in seconds given to each pod to terminate gracefully. If negative, the default value specified in the pod will be used.")
cmd.Flags().DurationVar(&options.Timeout,"timeout",0,"The length of time to wait before giving up, zero means infinite")
cmd.Flags().BoolVar(&options.Force,"force",options.Force,"Continue even if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet.")
cmd.Flags().BoolVar(&options.DeleteLocalData,"delete-local-data",options.DeleteLocalData,"Continue even if there are pods using emptyDir (local data that will be deleted when the node is drained).")
cmd.Flags().IntVar(&options.GracePeriodSeconds,"grace-period",options.GracePeriodSeconds,"Period of time in seconds given to each pod to terminate gracefully. If negative, the default value specified in the pod will be used.")
cmd.Flags().DurationVar(&options.Timeout,"timeout",options.Timeout,"The length of time to wait before giving up, zero means infinite")
cmd.Flags().StringVarP(&options.Selector,"selector","l",options.Selector,"Selector (label query) to filter on")
cmd.Flags().StringVarP(&options.PodSelector,"pod-selector","",options.PodSelector,"Label selector to filter pods on the node")
cmd.Flags().StringVarP(&options.ContainerName,"container","c","","Container name. If omitted, the first container in the pod will be chosen")
cmd.Flags().BoolVarP(&options.Stdin,"stdin","i",false,"Pass stdin to the container")
cmd.Flags().BoolVarP(&options.TTY,"tty","t",false,"Stdin is a TTY")
cmd.Flags().StringVarP(&options.ContainerName,"container","c",options.ContainerName,"Container name. If omitted, the first container in the pod will be chosen")
cmd.Flags().BoolVarP(&options.Stdin,"stdin","i",options.Stdin,"Pass stdin to the container")
cmd.Flags().BoolVarP(&options.TTY,"tty","t",options.TTY,"Stdin is a TTY")