ContainerSpec

The spec of a Container.

Fields
imageUri string

Required. The URI of a container image in the Artifact Registry that is to be run on each worker replica.

command[] string

The command to be invoked when the container is started. It overrides the entrypoint instruction in Dockerfile when provided.

args[] string

The arguments to be passed when starting the container.

env[] object (EnvVar)

Environment variables to be passed to the container. Maximum limit is 100.

JSON representation
{
  "imageUri": string,
  "command": [
    string
  ],
  "args": [
    string
  ],
  "env": [
    {
      object (EnvVar)
    }
  ]
}