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

gcloud: Thu Jun 26 10:50:44 UTC 2025

This commit is contained in:
Automated 2025-06-26 10:50:44 +00:00
parent 3a534cb57c
commit f645b4c02d
150 changed files with 4099 additions and 393 deletions

View file

@ -32,6 +32,7 @@ SYNOPSIS
--args=[ARG,...] --clear-volume-mounts --command=[COMMAND,...]
--cpu=CPU --depends-on=[CONTAINER,...] --gpu=GPU --image=IMAGE
--liveness-probe=[KEY=VALUE,...] --memory=MEMORY --port=PORT
--readiness-probe=[KEY=VALUE,...]
--remove-volume-mount=[MOUNT_PATH,...]
--startup-probe=[KEY=VALUE,...] --[no-]use-http2 --clear-env-vars
| --env-vars-file=FILE_PATH | --set-env-vars=[KEY=VALUE,...]
@ -463,6 +464,23 @@ FLAGS
to the previous container port, this will also update the probe
port.
--readiness-probe=[KEY=VALUE,...]
Comma separated settings for readiness 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: timeoutSeconds, periodSeconds,
failureThreshold, successThreshold, httpGet.port, httpGet.path,
grpc.port, grpc.service.
For example, to set a probe with 10s timeout and HTTP probe
requests sent to 8080 port of the container:
$ --readiness-probe=timeoutSeconds=10,httpGet.port=8080
To remove existing probe:
$ --readiness-probe=""
--remove-volume-mount=[MOUNT_PATH,...]
Removes the volume mounted at the specified path from the current
container.