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
Co-authored-by: Johannes Dillmann <j.dillmann@sap.com>
Co-authored-by: Pavel Busko <pavel.busko@sap.com>
Co-authored-by: Nicolas Bender <nicolas.bender@sap.com>
AppType flag.AppType`long:"app-type" choice:"buildpack" choice:"docker" choice:"cnb" description:"App lifecycle type to stage and run the app" default:"buildpack"`
18
+
Buildpacks []string`long:"buildpack" short:"b" description:"Custom buildpack by name (e.g. my-buildpack), Docker image (e.g. docker://registry/image:tag), Git URL (e.g. 'https://github.com/cloudfoundry/java-buildpack.git') or Git URL with a branch or tag (e.g. 'https://github.com/cloudfoundry/java-buildpack.git#v3.3.0' for 'v3.3.0' tag). To use built-in buildpacks only, specify 'default' or 'null'"`
Copy file name to clipboardExpand all lines: command/v7/push_command.go
+65-1Lines changed: 65 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -104,8 +104,9 @@ type PushCommand struct {
104
104
Taskbool`long:"task" description:"Push an app that is used only to execute tasks. The app will be staged, but not started and will have no route assigned."`
105
105
Vars []template.VarKV`long:"var" description:"Variable key value pair for variable substitution, (e.g., name=app1); can specify multiple times"`
106
106
PathsToVarsFiles []flag.PathWithExistenceCheck`long:"vars-file" description:"Path to a variable substitution file for manifest; can specify multiple times"`
107
+
Lifecycle constant.AppLifecycleType`long:"lifecycle" description:"App lifecycle type to stage and run the app" default:""`
107
108
dockerPasswordinterface{} `environmentName:"CF_DOCKER_PASSWORD" environmentDescription:"Password used for private docker repository"`
envCFStagingTimeoutinterface{} `environmentName:"CF_STAGING_TIMEOUT" environmentDescription:"Max wait time for staging, in minutes" environmentDefault:"15"`
110
111
envCFStartupTimeoutinterface{} `environmentName:"CF_STARTUP_TIMEOUT" environmentDescription:"Max wait time for app instance startup, in minutes" environmentDefault:"5"`
0 commit comments