Show / Hide Table of Contents

Class Container

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.

Inheritance
System.Object
Container
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class Container : IDirectResponseSchema

Properties

Args

(Optional) Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell

Declaration
[JsonProperty("args")]
public virtual IList<string> Args { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Command

Declaration
[JsonProperty("command")]
public virtual IList<string> Command { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Env

(Optional) List of environment variables to set in the container.

Declaration
[JsonProperty("env")]
public virtual IList<EnvVar> Env { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EnvVar>

EnvFrom

(Optional) List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.

Declaration
[JsonProperty("envFrom")]
public virtual IList<EnvFromSource> EnvFrom { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<EnvFromSource>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Image

Only supports containers from Google Container Registry or Artifact Registry URL of the Container image. More info: https://kubernetes.io/docs/concepts/containers/images

Declaration
[JsonProperty("image")]
public virtual string Image { get; set; }
Property Value
Type Description
System.String

ImagePullPolicy

(Optional) Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images

Declaration
[JsonProperty("imagePullPolicy")]
public virtual string ImagePullPolicy { get; set; }
Property Value
Type Description
System.String

LivenessProbe

(Optional) Periodic probe of container liveness. Container will be restarted if the probe fails. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Declaration
[JsonProperty("livenessProbe")]
public virtual Probe LivenessProbe { get; set; }
Property Value
Type Description
Probe

Name

(Optional) Name of the container specified as a DNS_LABEL. Currently unused in Cloud Run. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-label-names

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Ports

(Optional) 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.

Declaration
[JsonProperty("ports")]
public virtual IList<ContainerPort> Ports { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ContainerPort>

ReadinessProbe

(Optional) Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Declaration
[JsonProperty("readinessProbe")]
public virtual Probe ReadinessProbe { get; set; }
Property Value
Type Description
Probe

Resources

(Optional) Compute Resources required by this container. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources

Declaration
[JsonProperty("resources")]
public virtual ResourceRequirements Resources { get; set; }
Property Value
Type Description
ResourceRequirements

SecurityContext

(Optional) Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/

Declaration
[JsonProperty("securityContext")]
public virtual SecurityContext SecurityContext { get; set; }
Property Value
Type Description
SecurityContext

StartupProbe

(Optional) Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not be added to service endpoints if the probe fails. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Declaration
[JsonProperty("startupProbe")]
public virtual Probe StartupProbe { get; set; }
Property Value
Type Description
Probe

TerminationMessagePath

(Optional) 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.

Declaration
[JsonProperty("terminationMessagePath")]
public virtual string TerminationMessagePath { get; set; }
Property Value
Type Description
System.String

TerminationMessagePolicy

(Optional) 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.

Declaration
[JsonProperty("terminationMessagePolicy")]
public virtual string TerminationMessagePolicy { get; set; }
Property Value
Type Description
System.String

VolumeMounts

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

Declaration
[JsonProperty("volumeMounts")]
public virtual IList<VolumeMount> VolumeMounts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<VolumeMount>

WorkingDir

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

Declaration
[JsonProperty("workingDir")]
public virtual string WorkingDir { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top