Share via


EphemeralContainerV1.ImagePullPolicy Property

Definition

Defines the policy for pulling container images. Possible values include:

  • "Always": Always pull the image even if it is present locally.
  • "IfNotPresent": Pull the image only if it is not present locally. This is the default value.
  • "Never": Never pull the image; use the image that is already present locally. This property determines how Kubernetes fetches container images when deploying a pod.
[YamlDotNet.Serialization.YamlMember(Alias="imagePullPolicy")]
public string ImagePullPolicy { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="imagePullPolicy")>]
member this.ImagePullPolicy : string with get, set
Public Property ImagePullPolicy As String

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Applies to