You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().StringArrayVarP(&config.TemplateParameters, "param", "p", config.TemplateParameters, "Specify a key-value pair (e.g., -p FOO=BAR) to set/override a parameter value in the template.")
168
+
cmd.Flags().StringVar(&config.TemplateParametersFile, "param-file", "", "File containing parameter values to set/override in the template.")
169
+
cmd.MarkFlagFilename("param-file")
171
170
cmd.Flags().StringSliceVar(&config.Groups, "group", config.Groups, "Indicate components that should be grouped together as <comp1>+<comp2>.")
172
171
cmd.Flags().StringArrayVarP(&config.Environment, "env", "e", config.Environment, "Specify a key-value pair for an environment variable to set into each container.")
172
+
cmd.Flags().StringVar(&config.EnvironmentFile, "env-file", "", "File containing key-value pairs of environment variables to set into each container.")
173
+
cmd.MarkFlagFilename("env-file")
173
174
cmd.Flags().StringVar(&config.Name, "name", "", "Set name to use for generated application artifacts")
174
175
cmd.Flags().Var(&config.Strategy, "strategy", "Specify the build strategy to use if you don't want to detect (docker|pipeline|source).")
175
176
cmd.Flags().StringP("labels", "l", "", "Label to set in all resources for this application.")
0 commit comments