Enum ImagePullPolicy
Determines when the image is pulled from the registry to launch a container.
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum ImagePullPolicy
Syntax (vb)
Public Enum ImagePullPolicy
Synopsis
Fields
| ALWAYS | Every time the kubelet launches a container, the kubelet queries the container image registry to resolve the name to an image digest. |
| IF_NOT_PRESENT | The image is pulled only if it is not already present locally. |
| NEVER | The kubelet does not try fetching the image. |
Fields
| Name | Description |
|---|---|
| ALWAYS | Every time the kubelet launches a container, the kubelet queries the container image registry to resolve the name to an image digest. |
| IF_NOT_PRESENT | The image is pulled only if it is not already present locally. |
| NEVER | The kubelet does not try fetching the image. |