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
Copy file name to clipboardExpand all lines: command/v7/push_command.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,7 @@ type PushCommand struct {
88
88
HealthCheckHTTPEndpointstring`long:"endpoint" description:"Valid path on the app for an HTTP health check. Only used when specifying --health-check-type=http"`
89
89
HealthCheckType flag.HealthCheckType`long:"health-check-type" short:"u" description:"Application health check type. Defaults to 'port'. 'http' requires a valid endpoint, for example, '/health'."`
90
90
Instances flag.Instances`long:"instances" short:"i" description:"Number of instances"`
91
+
Lifecycle constant.AppLifecycleType`long:"lifecycle" description:"App lifecycle type to stage and run the app" default:""`
91
92
LogRateLimitstring`long:"log-rate-limit" short:"l" description:"Log rate limit per second, in bytes (e.g. 128B, 4K, 1M). -l=-1 represents unlimited"`
92
93
PathToManifest flag.ManifestPathWithExistenceCheck`long:"manifest" short:"f" description:"Path to manifest"`
93
94
MaxInFlight*int`long:"max-in-flight" description:"Defines the maximum number of instances that will be actively being started. Only applies when --strategy flag is specified."`
@@ -105,7 +106,6 @@ type PushCommand struct {
105
106
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."`
106
107
Vars []template.VarKV`long:"var" description:"Variable key value pair for variable substitution, (e.g., name=app1); can specify multiple times"`
107
108
PathsToVarsFiles []flag.PathWithExistenceCheck`long:"vars-file" description:"Path to a variable substitution file for manifest; can specify multiple times"`
108
-
Lifecycle constant.AppLifecycleType`long:"lifecycle" description:"App lifecycle type to stage and run the app" default:""`
109
109
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"`
0 commit comments