// NewCmdScale is a wrapper for the Kubernetes cli scale command func NewCmdScale(fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command { cmd := kcmd.NewCmdScale(f.Factory, out) cmd.Short = "Change the number of pods in a deployment" cmd.Long = scaleLong cmd.Example = fmt.Sprintf(scaleExample, fullName) return cmd }
// NewCmdScale is a wrapper for the Kubernetes cli scale command func NewCmdScale(fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command { cmd := kcmd.NewCmdScale(f.Factory, out) cmd.Short = "Change the number of pods in a deployment" cmd.Long = scaleLong cmd.Example = fmt.Sprintf(scaleExample, fullName) cmd.ValidArgs = []string{"deploymentconfig", "job", "replicationcontroller"} return cmd }