|
|
@ -22,6 +22,7 @@ var (
|
|
|
|
varStringRemote string
|
|
|
|
varStringRemote string
|
|
|
|
varStringBranch string
|
|
|
|
varStringBranch string
|
|
|
|
varStringServiceAccount string
|
|
|
|
varStringServiceAccount string
|
|
|
|
|
|
|
|
varStringImagePullPolicy string
|
|
|
|
|
|
|
|
|
|
|
|
// Cmd describes a kube command.
|
|
|
|
// Cmd describes a kube command.
|
|
|
|
Cmd = &cobra.Command{
|
|
|
|
Cmd = &cobra.Command{
|
|
|
@ -52,6 +53,7 @@ func init() {
|
|
|
|
deployCmd.Flags().IntVar(&varIntNodePort, "nodePort", 0, "The nodePort of the deployment to expose")
|
|
|
|
deployCmd.Flags().IntVar(&varIntNodePort, "nodePort", 0, "The nodePort of the deployment to expose")
|
|
|
|
deployCmd.Flags().IntVar(&varIntMinReplicas, "minReplicas", 3, "The min replicas to deploy")
|
|
|
|
deployCmd.Flags().IntVar(&varIntMinReplicas, "minReplicas", 3, "The min replicas to deploy")
|
|
|
|
deployCmd.Flags().IntVar(&varIntMaxReplicas, "maxReplicas", 10, "The max replicas to deploy")
|
|
|
|
deployCmd.Flags().IntVar(&varIntMaxReplicas, "maxReplicas", 10, "The max replicas to deploy")
|
|
|
|
|
|
|
|
deployCmd.Flags().StringVar(&varStringImagePullPolicy, "imagePullPolicy", "", "Image pull policy. One of Always, Never, IfNotPresent")
|
|
|
|
|
|
|
|
|
|
|
|
deployCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template, "+
|
|
|
|
deployCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template, "+
|
|
|
|
"--home and --remote cannot be set at the same time, if they are, --remote has higher priority")
|
|
|
|
"--home and --remote cannot be set at the same time, if they are, --remote has higher priority")
|
|
|
|