ContainerArgs

data class ContainerArgs(val args: Output<List<String>>? = null, val command: Output<List<String>>? = null, val env: Output<List<EnvVarArgs>>? = null, val envFrom: Output<List<EnvFromSourceArgs>>? = null, val image: Output<String>, val imagePullPolicy: Output<String>? = null, val livenessProbe: Output<ProbeArgs>? = null, val name: Output<String>? = null, val ports: Output<List<ContainerPortArgs>>? = null, val readinessProbe: Output<ProbeArgs>? = null, val resources: Output<ResourceRequirementsArgs>? = null, val securityContext: Output<SecurityContextArgs>? = null, val startupProbe: Output<ProbeArgs>? = null, val terminationMessagePath: Output<String>? = null, val terminationMessagePolicy: Output<String>? = null, val volumeMounts: Output<List<VolumeMountArgs>>? = null, val workingDir: Output<String>? = null) : ConvertibleToJava<ContainerArgs>

A single application container. This specifies both the container to run, the command to run in the container and the arguments to supply to it. Note that additional arguments may be supplied by the system to the container at runtime.

Constructors

Link copied to clipboard
fun ContainerArgs(args: Output<List<String>>? = null, command: Output<List<String>>? = null, env: Output<List<EnvVarArgs>>? = null, envFrom: Output<List<EnvFromSourceArgs>>? = null, image: Output<String>, imagePullPolicy: Output<String>? = null, livenessProbe: Output<ProbeArgs>? = null, name: Output<String>? = null, ports: Output<List<ContainerPortArgs>>? = null, readinessProbe: Output<ProbeArgs>? = null, resources: Output<ResourceRequirementsArgs>? = null, securityContext: Output<SecurityContextArgs>? = null, startupProbe: Output<ProbeArgs>? = null, terminationMessagePath: Output<String>? = null, terminationMessagePolicy: Output<String>? = null, volumeMounts: Output<List<VolumeMountArgs>>? = null, workingDir: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ContainerArgs

Properties

Link copied to clipboard
val args: Output<List<String>>? = null

Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references are not supported in Cloud Run.

Link copied to clipboard
val command: Output<List<String>>? = null

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references are not supported in Cloud Run.

Link copied to clipboard
val env: Output<List<EnvVarArgs>>? = null

List of environment variables to set in the container. EnvVar with duplicate names are generally allowed; if referencing a secret, the name must be unique for the container. For non-secret EnvVar names, the Container will only get the last-declared one.

Link copied to clipboard
val envFrom: Output<List<EnvFromSourceArgs>>? = null

Not supported by Cloud Run.

Link copied to clipboard
val image: Output<String>

Name of the container image in Dockerhub, Google Artifact Registry, or Google Container Registry. If the host is not provided, Dockerhub is assumed.

Link copied to clipboard
val imagePullPolicy: Output<String>? = null

Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.

Link copied to clipboard
val livenessProbe: Output<ProbeArgs>? = null

Periodic probe of container liveness. Container will be restarted if the probe fails.

Link copied to clipboard
val name: Output<String>? = null

Name of the container specified as a DNS_LABEL (RFC 1123).

Link copied to clipboard
val ports: Output<List<ContainerPortArgs>>? = null

List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible. If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.

Link copied to clipboard
val readinessProbe: Output<ProbeArgs>? = null

Not supported by Cloud Run.

Link copied to clipboard
val resources: Output<ResourceRequirementsArgs>? = null

Compute Resources required by this container.

Link copied to clipboard

Not supported by Cloud Run.

Link copied to clipboard
val startupProbe: Output<ProbeArgs>? = null

Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not receive traffic if the probe fails. If not provided, a default startup probe with TCP socket action is used.

Link copied to clipboard
val terminationMessagePath: Output<String>? = null

Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log.

Link copied to clipboard
val terminationMessagePolicy: Output<String>? = null

Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.

Link copied to clipboard
val volumeMounts: Output<List<VolumeMountArgs>>? = null

Volume to mount into the container's filesystem. Only supports SecretVolumeSources. Pod volumes to mount into the container's filesystem.

Link copied to clipboard
val workingDir: Output<String>? = null

Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image.