Intermediate Kubernetes
Q60 / 100

What does the "imagePullPolicy: Always" setting do?

Correct! Well done.

Incorrect.

The correct answer is A) It causes the kubelet to always pull the image from the registry before starting the container, even if a version of the image already exists locally

A

Correct Answer

It causes the kubelet to always pull the image from the registry before starting the container, even if a version of the image already exists locally

Explanation

"imagePullPolicy: Always" forces a fresh pull on every Pod start, ensuring the latest version of a tag is used — important when using mutable tags like "latest", though it adds startup latency and registry load.

Progress
60/100