RevisionSpec

RevisionSpec holds the desired state of the Revision (from the client).

JSON representation
{
  "containerConcurrency": integer,
  "timeoutSeconds": integer,
  "serviceAccountName": string,
  "containers": [
    {
      object (Container)
    }
  ],
  "volumes": [
    {
      object (Volume)
    }
  ],
  "enableServiceLinks": boolean,
  "imagePullSecrets": [
    {
      object (LocalObjectReference)
    }
  ]
}
Fields
containerConcurrency

integer

ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision. If not specified, defaults to 80.

timeoutSeconds

integer

TimeoutSeconds holds the max duration the instance is allowed for responding to a request.

Cloud Run: defaults to 300 seconds (5 minutes). Maximum allowed value is 3600 seconds (1 hour).

serviceAccountName

string

Email address of the IAM service account associated with the revision of the service. The service account represents the identity of the running revision, and determines what permissions the revision has. If not provided, the revision will use the project's default service account.

containers[]

object (Container)

Required. Containers holds the single container that defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of fields on this Container, including: name and lifecycle. In Cloud Run, only a single container may be provided.

volumes[]

object (Volume)

imagePullSecrets[]

object (LocalObjectReference)

Not supported by Cloud Run.