Show / Hide Table of Contents

Class ContainerConfiguration

The configuration for container-enabled pools.

Inheritance
System.Object
ContainerConfiguration
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Batch.dll
Syntax
public class ContainerConfiguration

Constructors

ContainerConfiguration()

Initializes a new instance of the ContainerConfiguration class.

Declaration
public ContainerConfiguration ();

Properties

ContainerImageNames

Gets or sets the collection of container images.

Declaration
public System.Collections.Generic.IList<string> ContainerImageNames { get; set; }
Property Value
System.Collections.Generic.IList<System.String>

Remarks

This is the full image reference, as would be specified to "docker pull". An image will be sourced from the default

Docker registry unless the image is fully qualified with an alternative registry.

ContainerRegistries

Gets or sets additional private registries which containers can be pulled from.

Declaration
public System.Collections.Generic.IList<Microsoft.Azure.Batch.ContainerRegistry> ContainerRegistries { get; set; }
Property Value
System.Collections.Generic.IList<ContainerRegistry>

Remarks

If any images must be downloaded from a private registry which requires credentials, then those credentials must

be provided here.

Type

Gets or sets the container technology to be used.

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

Back to top Azure SDK for .NET