1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 18:45:13 +00:00
gcloud-help/gcloud/app/versions/start
2022-03-01 04:29:52 +00:00

49 lines
1.4 KiB
Text

NAME
gcloud app versions start - start serving specified versions
SYNOPSIS
gcloud app versions start VERSIONS [VERSIONS ...]
[--service=SERVICE, -s SERVICE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
This command starts serving the specified versions. It may only be used if
the scaling module for your service has been set to manual.
EXAMPLES
To start a specific version across all services, run:
$ gcloud app versions start v1
To start multiple named versions across all services, run:
$ gcloud app versions start v1 v2
To start a single version on a single service, run:
$ gcloud app versions start --service=servicename v1
To start multiple versions in a single service, run:
$ gcloud app versions start --service=servicename v1 v2
POSITIONAL ARGUMENTS
VERSIONS [VERSIONS ...]
The versions to start. (optionally filtered by the --service flag).
FLAGS
--service=SERVICE, -s SERVICE
If specified, only start versions from the given service.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
NOTES
This variant is also available:
$ gcloud beta app versions start