1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Dec 11 10:18:23 UTC 2024

This commit is contained in:
Automated 2024-12-11 10:18:23 +00:00
parent ad2752c6c9
commit ec6dc40f99
493 changed files with 17655 additions and 1753 deletions

View file

@ -10,17 +10,14 @@ SYNOPSIS
[--[no-]deploy-health-check] [--description=DESCRIPTION]
[--execution-environment=EXECUTION_ENVIRONMENT]
[--ingress=INGRESS; default="all"] [--[no-]invoker-iam-check]
[--max-instances=MAX_INSTANCES] [--max-surge=MAX_SURGE]
[--max-unavailable=MAX_UNAVAILABLE] [--mesh=MESH]
[--max=MAX] [--max-instances=MAX_INSTANCES] [--max-surge=MAX_SURGE]
[--max-unavailable=MAX_UNAVAILABLE] [--mesh=MESH] [--min=MIN]
[--min-instances=MIN_INSTANCES] [--region=REGION]
[--remove-containers=[CONTAINER,...]]
[--revision-suffix=REVISION_SUFFIX] [--scaling=SCALING]
[--service-account=SERVICE_ACCOUNT]
[--service-max-instances=SERVICE_MAX_INSTANCES]
[--service-min-instances=SERVICE_MIN_INSTANCES]
[--[no-]session-affinity] [--tag=TAG] [--timeout=TIMEOUT]
[--no-traffic] [--vpc-connector=VPC_CONNECTOR]
[--vpc-egress=VPC_EGRESS]
[--service-account=SERVICE_ACCOUNT] [--[no-]session-affinity]
[--tag=TAG] [--timeout=TIMEOUT] [--no-traffic]
[--vpc-connector=VPC_CONNECTOR] [--vpc-egress=VPC_EGRESS]
[--add-cloudsql-instances=[CLOUDSQL-INSTANCES,...]
| --clear-cloudsql-instances
| --remove-cloudsql-instances=[CLOUDSQL-INSTANCES,...]
@ -183,6 +180,12 @@ FLAGS
Use --invoker-iam-check to enable and --no-invoker-iam-check to
disable.
--max=MAX
The maximum number of container instances for this Service to run. This
instance limit will be divided among all Revisions receiving a
percentage of traffic. Once service-max-instances is enabled for a
service, it cannot be disabled.
--max-instances=MAX_INSTANCES
The maximum number of container instances of the Service to run. Use
'default' to unset the limit and use the platform default.
@ -202,6 +205,11 @@ FLAGS
resource name must be in the format of
projects/PROJECT/locations/global/meshes/MESH_NAME.
--min=MIN
The minimum number of container instances for this Service to run or
'default' to remove any minimum. These instances will be divided among
all Revisions receiving a percentage of traffic.
--min-instances=MIN_INSTANCES
The minimum number of container instances for this Revision of the
Service to run or 'default' to remove any minimum.
@ -230,17 +238,6 @@ FLAGS
revision of the service. The service account represents the identity of
the running revision, and determines what permissions the revision has.
--service-max-instances=SERVICE_MAX_INSTANCES
The maximum number of container instances for this Service to run. This
instance limit will be divided among all Revisions receiving a
percentage of traffic. Once service-max-instances is enabled for a
service, it cannot be disabled.
--service-min-instances=SERVICE_MIN_INSTANCES
The minimum number of container instances for this Service to run or
'default' to remove any minimum. These instances will be divided among
all Revisions receiving a percentage of traffic.
--[no-]session-affinity
Whether to enable session affinity for connections to the service. Use
--session-affinity to enable and --no-session-affinity to disable.