mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 16:37:00 +00:00
gcloud: Thu Jun 26 10:50:44 UTC 2025
This commit is contained in:
parent
3a534cb57c
commit
f645b4c02d
150 changed files with 4099 additions and 393 deletions
|
|
@ -32,6 +32,7 @@ SYNOPSIS
|
|||
--args=[ARG,...] --[no-]automatic-updates --clear-volume-mounts
|
||||
--cpu=CPU --depends-on=[CONTAINER,...] --gpu=GPU
|
||||
--liveness-probe=[KEY=VALUE,...] --memory=MEMORY --port=PORT
|
||||
--readiness-probe=[KEY=VALUE,...]
|
||||
--remove-volume-mount=[MOUNT_PATH,...]
|
||||
--startup-probe=[KEY=VALUE,...]
|
||||
--[no-]use-http2 --base-image=BASE_IMAGE
|
||||
|
|
@ -497,6 +498,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.
|
||||
|
|
|
|||
|
|
@ -34,6 +34,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,...]
|
||||
|
|
@ -419,6 +420,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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -65,5 +65,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools delete
|
||||
|
||||
|
|
|
|||
|
|
@ -493,5 +493,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools deploy
|
||||
|
||||
|
|
|
|||
|
|
@ -62,5 +62,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools describe
|
||||
|
||||
|
|
|
|||
|
|
@ -57,5 +57,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools
|
||||
|
||||
|
|
|
|||
|
|
@ -63,5 +63,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools list
|
||||
|
||||
|
|
|
|||
|
|
@ -42,5 +42,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools replace
|
||||
|
||||
|
|
|
|||
|
|
@ -77,5 +77,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools revisions delete
|
||||
|
||||
|
|
|
|||
|
|
@ -51,5 +51,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools revisions describe
|
||||
|
||||
|
|
|
|||
|
|
@ -42,5 +42,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools revisions
|
||||
|
||||
|
|
|
|||
|
|
@ -68,5 +68,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools revisions list
|
||||
|
||||
|
|
|
|||
|
|
@ -470,5 +470,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools update
|
||||
|
||||
|
|
|
|||
|
|
@ -130,5 +130,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta run worker-pools update-instance-split
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue