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
* Add Autocomplete to flags
* Generic cache
* Add Application autocompletion to all commands
* Fix Application autocompletion to all commands, Add Component autocomplete
* Add Component autocomplete
* remove appName pointer to cleanup code
* Add autocomplete of Deployments
* Add autocomplete of Variables and Secrets
* better failsafe
* Set n to shorthand for component everywhere
* Add Jobs autocompletion
* revert "n" as shortcut for component
* remove RADIX_ from available variables
* use slice.FindAll() instead of slices.Filter()
createBuildDeployApplicationCmd.Flags().Var(&overrideUseBuildCache, flagnames.UseBuildCache, "Optional. Overrides configured or default useBuildCache option. It is applicable when the useBuildKit option is set as true.")
createDeployPipelineJobCmd.Flags().StringP(flagnames.User, "u", "", "The user who triggered the deploy")
138
140
createDeployPipelineJobCmd.Flags().StringToStringP(flagnames.ImageTagName, "t", map[string]string{}, "Image tag name for a component: component-name=tag-name. Multiple pairs can be specified.")
139
141
createDeployPipelineJobCmd.Flags().StringP(flagnames.CommitID, "i", "", "An optional 40 character commit id to tag the new pipeline job")
140
-
createDeployPipelineJobCmd.Flags().StringSlice(flagnames.Component, []string{}, "Optional component to deploy, when only specific component need to be deployed. Multiple components can be specified.")
142
+
createDeployPipelineJobCmd.Flags().StringSliceP(flagnames.Component, "n", []string{}, "Optional component to deploy, when only specific component need to be deployed. Multiple components can be specified.")
0 commit comments