1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 23:49:35 +00:00

gcloud: Wed May 18 08:41:01 UTC 2022

This commit is contained in:
Automated 2022-05-18 08:41:01 +00:00
parent 379049f21a
commit 9f95235d93
258 changed files with 7569 additions and 441 deletions

View file

@ -5,8 +5,9 @@ NAME
SYNOPSIS
gcloud app deploy [DEPLOYABLES ...] [--appyaml=APPYAML] [--bucket=BUCKET]
[--no-cache] [--ignore-file=IGNORE_FILE] [--image-url=IMAGE_URL]
[--no-promote] [--no-stop-previous-version]
[--version=VERSION, -v VERSION] [GCLOUD_WIDE_FLAG ...]
[--no-promote] [--service-account=SERVICE_ACCOUNT]
[--no-stop-previous-version] [--version=VERSION, -v VERSION]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
This command is used to deploy both code and configuration to the App
@ -66,6 +67,11 @@ EXAMPLES
$ gcloud config set app/promote_by_default false
To deploy a service that will run as a service account, run:
$ gcloud app deploy ~/my_app/app.yaml \
--service-account=SERVICE_ACCOUNT
POSITIONAL ARGUMENTS
[DEPLOYABLES ...]
The yaml files for the services or configurations you want to deploy.
@ -101,6 +107,11 @@ FLAGS
default app/promote_by_default property value for this command
invocation. Use --no-promote to disable.
--service-account=SERVICE_ACCOUNT
The service account that this deployed version will run as. If this
argument is not specified, the App Engine default service account will
be used for your current deployed version.
--stop-previous-version
Stop the previously running version when deploying a new version that
receives all traffic.