Service Template Spec
data class ServiceTemplateSpec(val containerConcurrency: Int? = null, val containers: List<ServiceTemplateSpecContainer>? = null, val serviceAccountName: String? = null, val servingState: String? = null, val timeoutSeconds: Int? = null, val volumes: List<ServiceTemplateSpecVolume>? = null)
Constructors
Link copied to clipboard
fun ServiceTemplateSpec(containerConcurrency: Int? = null, containers: List<ServiceTemplateSpecContainer>? = null, serviceAccountName: String? = null, servingState: String? = null, timeoutSeconds: Int? = null, volumes: List<ServiceTemplateSpecVolume>? = null)
Types
Properties
Link copied to clipboard
Container defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of the fields of this Container, including: name, ports, and volumeMounts. The runtime contract is documented here: https://github.com/knative/serving/blob/main/docs/runtime-contract.md Structure is documented below.