ImagePullPolicy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Image pull policies for container resources.
public enum ImagePullPolicy
type ImagePullPolicy =
Public Enum ImagePullPolicy
- Inheritance
-
ImagePullPolicy
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Default image pull policy behavior. Currently this will be the same as the default behavior for your container runtime. |
Always | 1 | Always pull the image when creating the container. |
Missing | 2 | Pull the image only if it does not already exist. |