1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 02:25:19 +00:00

gcloud: Thu Dec 14 10:23:57 UTC 2023

This commit is contained in:
Automated 2023-12-14 10:23:58 +00:00
parent f36750d203
commit a990278fb3
205 changed files with 4929 additions and 1866 deletions

View file

@ -5,10 +5,19 @@ SYNOPSIS
gcloud ai models upload --container-image-uri=CONTAINER_IMAGE_URI
--display-name=DISPLAY_NAME [--artifact-uri=ARTIFACT_URI]
[--container-args=[ARG,...]] [--container-command=[COMMAND,...]]
[--container-deployment-timeout-seconds=CONTAINER_DEPLOYMENT_TIMEOUT_SECONDS]
[--container-env-vars=[KEY=VALUE,...]]
[--container-grpc-ports=[PORT,...]]
[--container-health-probe-exec=[HEALTH_PROBE_EXEC,...]]
[--container-health-probe-period-seconds=CONTAINER_HEALTH_PROBE_PERIOD_SECONDS]
[--container-health-probe-timeout-seconds=CONTAINER_HEALTH_PROBE_TIMEOUT_SECONDS]
[--container-health-route=CONTAINER_HEALTH_ROUTE]
[--container-ports=[PORT,...]]
[--container-predict-route=CONTAINER_PREDICT_ROUTE]
[--container-shared-memory-size-mb=CONTAINER_SHARED_MEMORY_SIZE_MB]
[--container-startup-probe-exec=[STARTUP_PROBE_EXEC,...]]
[--container-startup-probe-period-seconds=CONTAINER_STARTUP_PROBE_PERIOD_SECONDS]
[--container-startup-probe-timeout-seconds=CONTAINER_STARTUP_PROBE_TIMEOUT_SECONDS]
[--description=DESCRIPTION]
[--explanation-metadata-file=EXPLANATION_METADATA_FILE]
[--explanation-method=EXPLANATION_METHOD]
@ -53,19 +62,54 @@ OPTIONAL FLAGS
Entrypoint for the container image. If not specified, the container
image's default entrypoint is run.
--container-deployment-timeout-seconds=CONTAINER_DEPLOYMENT_TIMEOUT_SECONDS
Deployment timeout in seconds.
--container-env-vars=[KEY=VALUE,...]
List of key-value pairs to set as environment variables.
--container-grpc-ports=[PORT,...]
Container ports to receive grpc requests at. Must be a number between 1
and 65535, inclusive.
--container-health-probe-exec=[HEALTH_PROBE_EXEC,...]
Exec specifies the action to take. Used by health probe. An example of
this argument would be ["cat", "/tmp/healthy"].
--container-health-probe-period-seconds=CONTAINER_HEALTH_PROBE_PERIOD_SECONDS
How often (in seconds) to perform the health probe. Default to 10
seconds. Minimum value is 1.
--container-health-probe-timeout-seconds=CONTAINER_HEALTH_PROBE_TIMEOUT_SECONDS
Number of seconds after which the health probe times out. Defaults to 1
second. Minimum value is 1.
--container-health-route=CONTAINER_HEALTH_ROUTE
HTTP path to send health checks to inside the container.
--container-ports=[PORT,...]
Container ports to receive requests at. Must be a number between 1 and
65535, inclusive.
Container ports to receive http requests at. Must be a number between 1
and 65535, inclusive.
--container-predict-route=CONTAINER_PREDICT_ROUTE
HTTP path to send prediction requests to inside the container.
--container-shared-memory-size-mb=CONTAINER_SHARED_MEMORY_SIZE_MB
The amount of the VM memory to reserve as the shared memory for the
model in megabytes.
--container-startup-probe-exec=[STARTUP_PROBE_EXEC,...]
Exec specifies the action to take. Used by startup probe. An example of
this argument would be ["cat", "/tmp/healthy"].
--container-startup-probe-period-seconds=CONTAINER_STARTUP_PROBE_PERIOD_SECONDS
How often (in seconds) to perform the startup probe. Default to 10
seconds. Minimum value is 1.
--container-startup-probe-timeout-seconds=CONTAINER_STARTUP_PROBE_TIMEOUT_SECONDS
Number of seconds after which the startup probe times out. Defaults to
1 second. Minimum value is 1.
--description=DESCRIPTION
Description of the model.