You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -175,7 +175,7 @@ services) (which have a `ClusterIP` of `None`) for easy service discovery when y
175
175
A Service can be made to span multiple Deployments by omitting release-specific labels from its selector. [Deployments](/docs/concepts/workloads/controllers/deployment/) make it easy to update a running service without downtime.
A desired state of an object is described by a Deployment, and if changes to that spec are _applied_, the deployment controller changes the actual state to the desired state at a controlled rate.
@@ -216,14 +216,14 @@ The [imagePullPolicy](/docs/concepts/containers/images/#updating-images) and the
216
216
<!--
217
217
- `imagePullPolicy: IfNotPresent`: the image is pulled only if it is not already present locally.
218
218
- `imagePullPolicy: Always`: the image is pulled every time the pod is started.
219
-
- `imagePullPolicy` is omitted and either the image tag is `:latest` or it is omitted: `Always` is applied.
220
-
- `imagePullPolicy` is omitted and the image tag is present but not `:latest`: `IfNotPresent`is applied.
219
+
- `imagePullPolicy` is omitted and either the image tag is `:latest` or it is omitted: `imagePullPolicy` is automatically set to `Always`. Note that this will _not_ be updated to `IfNotPresent` if the tag changes value.
220
+
- `imagePullPolicy` is omitted and the image tag is present but not `:latest`: `imagePullPolicy` is automatically set to `IfNotPresent`. Note that this will _not_ be updated to `Always` if the tag is later removed or changed to `:latest`.
221
221
- `imagePullPolicy: Never`: the image is assumed to exist locally. No attempt is made to pull the image.
@@ -244,10 +244,10 @@ You should avoid using the `:latest` tag when deploying containers in production
244
244
{{< /note >}}
245
245
246
246
<!--
247
-
The caching semantics of the underlying image provider make even `imagePullPolicy: Always` efficient. With Docker, for example, if the image already exists, the pull attempt is fast because all image layers are cached and no image download is needed.
247
+
The caching semantics of the underlying image provider make even `imagePullPolicy: Always` efficient, as long as the registry is reliably accessible. With Docker, for example, if the image already exists, the pull attempt is fast because all image layers are cached and no image download is needed.
0 commit comments