cmd.Flags().BoolVar(&options.overwrite,"overwrite",options.overwrite,"If true, allow annotations to be overwritten, otherwise reject annotation updates that overwrite existing annotations.")
cmd.Flags().BoolVar(&options.overwrite,"overwrite",options.overwrite,"If true, allow annotations to be overwritten, otherwise reject annotation updates that overwrite existing annotations.")
cmd.Flags().BoolVar(&options.CreateAnnotation,"create-annotation",options.CreateAnnotation,"Will create 'last-applied-configuration' annotations if current objects doesn't have one")
cmd.Flags().BoolVar(&options.CreateAnnotation,"create-annotation",options.CreateAnnotation,"Will create 'last-applied-configuration' annotations if current objects doesn't have one")
usage:="that contains the last-applied-configuration annotations"
usage:="that contains the last-applied-configuration annotations"
cmd.Flags().String("generator",cmdutil.HorizontalPodAutoscalerV1GeneratorName,i18n.T("The name of the API generator to use. Currently there is only 1 generator."))
cmd.Flags().String("generator",cmdutil.HorizontalPodAutoscalerV1GeneratorName,i18n.T("The name of the API generator to use. Currently there is only 1 generator."))
cmd.Flags().Int32("min",-1,"The lower limit for the number of pods that can be set by the autoscaler. If it's not specified or negative, the server will apply a default value.")
cmd.Flags().Int32("min",-1,"The lower limit for the number of pods that can be set by the autoscaler. If it's not specified or negative, the server will apply a default value.")
"Only relevant if --edit=true. Defaults to the line ending native to your platform.")
"Only relevant if --edit=true. Defaults to the line ending native to your platform.")
cmdutil.AddApplyAnnotationFlags(cmd)
cmdutil.AddApplyAnnotationFlags(cmd)
cmdutil.AddRecordFlag(cmd)
cmdutil.AddDryRunFlag(cmd)
cmdutil.AddDryRunFlag(cmd)
cmdutil.AddInclude3rdPartyFlags(cmd)
cmdutil.AddInclude3rdPartyFlags(cmd)
cmd.Flags().StringVarP(&options.Selector,"selector","l",options.Selector,"Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)")
cmd.Flags().StringVarP(&o.Selector,"selector","l",o.Selector,"Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)")
cmd.Flags().StringVar(&options.Raw,"raw",options.Raw,"Raw URI to POST to the server. Uses the transport specified by the kubeconfig file.")
cmd.Flags().StringVar(&o.Raw,"raw",o.Raw,"Raw URI to POST to the server. Uses the transport specified by the kubeconfig file.")