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

gcloud: Wed Jul 23 10:59:14 UTC 2025

This commit is contained in:
Automated 2025-07-23 10:59:14 +00:00
parent fe3a430c1d
commit 0acbd64d02
208 changed files with 2473 additions and 622 deletions

View file

@ -16,8 +16,8 @@ SYNOPSIS
[--add-volume-mount=[volume=NAME,mount-path=MOUNT_PATH,...]
--args=[ARG,...] --clear-volume-mounts --command=[COMMAND,...]
--cpu=CPU --depends-on=[CONTAINER,...] --gpu=GPU --image=IMAGE
--memory=MEMORY
--remove-volume-mount=[MOUNT_PATH,...] --clear-env-vars
--memory=MEMORY --remove-volume-mount=[MOUNT_PATH,...]
--startup-probe=[KEY=VALUE,...] --clear-env-vars
| --env-vars-file=FILE_PATH | --set-env-vars=[KEY=VALUE,...]
| --remove-env-vars=[KEY,...]
--update-env-vars=[KEY=VALUE,...] --clear-secrets
@ -245,6 +245,23 @@ FLAGS
Removes the volume mounted at the specified path from the current
container.
--startup-probe=[KEY=VALUE,...]
Comma separated settings for startup probe in the form KEY=VALUE.
Each key stands for a field of the probe described in
https://cloud.google.com/run/docs/reference/rest/v1/Container#Probe.
Currently supported keys are: initialDelaySeconds, timeoutSeconds,
periodSeconds, failureThreshold, httpGet.port, httpGet.path,
grpc.port, grpc.service, tcpSocket.port.
For example, to set a probe with 10s timeout and HTTP probe
requests sent to 8080 port of the container:
$ --startup-probe=timeoutSeconds=10,httpGet.port=8080
To remove existing probe:
$ --startup-probe=""
At most one of these can be specified:
--clear-env-vars

View file

@ -17,7 +17,8 @@ SYNOPSIS
[--add-volume-mount=[volume=NAME,mount-path=MOUNT_PATH,...]
--args=[ARG,...] --clear-volume-mounts --command=[COMMAND,...]
--cpu=CPU --depends-on=[CONTAINER,...] --gpu=GPU --memory=MEMORY
--remove-volume-mount=[MOUNT_PATH,...] --clear-env-vars
--remove-volume-mount=[MOUNT_PATH,...]
--startup-probe=[KEY=VALUE,...] --clear-env-vars
| --env-vars-file=FILE_PATH | --set-env-vars=[KEY=VALUE,...]
| --remove-env-vars=[KEY,...]
--update-env-vars=[KEY=VALUE,...] --clear-secrets
@ -246,6 +247,23 @@ FLAGS
Removes the volume mounted at the specified path from the current
container.
--startup-probe=[KEY=VALUE,...]
Comma separated settings for startup probe in the form KEY=VALUE.
Each key stands for a field of the probe described in
https://cloud.google.com/run/docs/reference/rest/v1/Container#Probe.
Currently supported keys are: initialDelaySeconds, timeoutSeconds,
periodSeconds, failureThreshold, httpGet.port, httpGet.path,
grpc.port, grpc.service, tcpSocket.port.
For example, to set a probe with 10s timeout and HTTP probe
requests sent to 8080 port of the container:
$ --startup-probe=timeoutSeconds=10,httpGet.port=8080
To remove existing probe:
$ --startup-probe=""
At most one of these can be specified:
--clear-env-vars

View file

@ -19,8 +19,8 @@ SYNOPSIS
[--add-volume-mount=[volume=NAME,mount-path=MOUNT_PATH,...]
--args=[ARG,...] --clear-volume-mounts --command=[COMMAND,...]
--cpu=CPU --depends-on=[CONTAINER,...] --gpu=GPU --image=IMAGE
--memory=MEMORY
--remove-volume-mount=[MOUNT_PATH,...] --clear-env-vars
--memory=MEMORY --remove-volume-mount=[MOUNT_PATH,...]
--startup-probe=[KEY=VALUE,...] --clear-env-vars
| --env-vars-file=FILE_PATH | --set-env-vars=[KEY=VALUE,...]
| --remove-env-vars=[KEY,...]
--update-env-vars=[KEY=VALUE,...] --clear-secrets
@ -262,6 +262,23 @@ FLAGS
Removes the volume mounted at the specified path from the current
container.
--startup-probe=[KEY=VALUE,...]
Comma separated settings for startup probe in the form KEY=VALUE.
Each key stands for a field of the probe described in
https://cloud.google.com/run/docs/reference/rest/v1/Container#Probe.
Currently supported keys are: initialDelaySeconds, timeoutSeconds,
periodSeconds, failureThreshold, httpGet.port, httpGet.path,
grpc.port, grpc.service, tcpSocket.port.
For example, to set a probe with 10s timeout and HTTP probe
requests sent to 8080 port of the container:
$ --startup-probe=timeoutSeconds=10,httpGet.port=8080
To remove existing probe:
$ --startup-probe=""
At most one of these can be specified:
--clear-env-vars