// NewCmdRolloutPause is a wrapper for the Kubernetes cli rollout pause command func NewCmdRolloutPause(fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command { cmd := rollout.NewCmdRolloutPause(f.Factory, out) cmd.Long = rolloutPauseLong cmd.Example = fmt.Sprintf(rolloutPauseExample, fullName) cmd.ValidArgs = append(cmd.ValidArgs, "deploymentconfig") return cmd }
// NewCmdRolloutPause is a wrapper for the Kubernetes cli rollout pause command func NewCmdRolloutPause(fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command { cmd := rollout.NewCmdRolloutPause(f.Factory, out) cmd.Long = rolloutPauseLong cmd.Example = fmt.Sprintf(rolloutPauseExample, fullName) return cmd }