Fix typo in pause command

pull/11875/head
Rajwinder Mahal 2021-07-01 16:22:55 -07:00
parent 7c45056827
commit 75422a844c
No known key found for this signature in database
GPG Key ID: 86D607CAFD33BCD2
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func runPause(cmd *cobra.Command, args []string) {
}
func init() {
pauseCmd.Flags().StringSliceVarP(&namespaces, "--namespaces", "n", constants.DefaultNamespaces, "namespaces to pause")
pauseCmd.Flags().StringSliceVarP(&namespaces, "namespaces", "n", constants.DefaultNamespaces, "namespaces to pause")
pauseCmd.Flags().BoolVarP(&allNamespaces, "all-namespaces", "A", false, "If set, pause all namespaces")
pauseCmd.Flags().StringVarP(&outputFormat, "output", "o", "text", "Format to print stdout in. Options include: [text,json]")
}