skip monitoring create/kill jobs

This commit is contained in:
Nhat Tan Le 2020-09-30 16:29:07 -07:00
parent 81c05fb700
commit aea8abb69d
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ import (
func init() {
rootCmd.AddCommand(createCmd)
createCmd.Flags().BoolVarP(&monitor, "monitor", "m", false, "monitor the result after sending the command")
createCmd.Flags().BoolVarP(&monitor, "monitor", "m", true, "monitor the result after sending the command")
}
var createCmd = &cobra.Command{