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
Some image name examples that Kubernetes can use are:
58
+
59
+
-`busybox` - Image name only, no tag or digest. Kubernetes will use Docker public registry and latest tag. (Same as `docker.io/library/busybox:latest`)
60
+
-`busybox:1.32.0` - Image name with tag. Kubernetes will use Docker public registry. (Same as `docker.io/library/busybox:1.32.0`)
61
+
-`registry.k8s.io/pause:latest` - Image name with a custom registry and latest tag.
62
+
-`registry.k8s.io/pause:3.5` - Image name with a custom registry and non-latest tag.
63
+
-`registry.k8s.io/pause@sha256:1ff6c18fbef2045af6b9c16bf034cc421a29027b800e4f9b68ae9b1cb3e9ae07` - Image name with digest.
64
+
-`registry.k8s.io/pause:3.5@sha256:1ff6c18fbef2045af6b9c16bf034cc421a29027b800e4f9b68ae9b1cb3e9ae07` - Image name with tag and digest. Only digest will be used for pulling.
65
+
47
66
## Updating images
48
67
49
68
When you first create a {{< glossary_tooltip text="Deployment" term_id="deployment" >}},
0 commit comments