Skip to content

Commit 9105838

Browse files
committed
Fix review comments
1 parent 523a119 commit 9105838

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/en/docs/concepts/containers/images.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Images can also include a registry hostname; for example: `fictional.registry.ex
3434
and possibly a port number as well; for example: `fictional.registry.example:10443/imagename`.
3535

3636
If you don't specify a registry hostname, Kubernetes assumes that you mean the [Docker public registry](https://hub.docker.com/).
37-
You can change this behaviour by setting default image registry in [container runtime](/docs/setup/production-environment/container-runtimes/) configuration.
37+
You can change this behaviour by setting default image registry in
38+
[container runtime](/docs/setup/production-environment/container-runtimes/) configuration.
3839

3940
After the image name part you can add a _tag_ or _digest_ (in the same way you would when using with commands
4041
like `docker` or `podman`). Tags let you identify different versions of the same series of images.
@@ -45,13 +46,13 @@ Image tags consist of lowercase and uppercase letters, digits, underscores (`_`)
4546
periods (`.`), and dashes (`-`). It can be up to 128 characters long. And must follow the
4647
next regex pattern: `[a-zA-Z0-9_][a-zA-Z0-9._-]{0,127}`
4748
You can read more about and find validation regex in the
48-
[OCI Distribution Specification](https://github.com/opencontainers/distribution-spec/blob/v1.1.0/spec.md#workflow-categories).
49+
[OCI Distribution Specification](https://github.com/opencontainers/distribution-spec/blob/master/spec.md#workflow-categories).
4950
If you don't specify a tag, Kubernetes assumes you mean the tag `latest`.
5051

5152
Image digests consists of a hash algorithm (such as `sha256`) and a hash value. For example:
5253
`sha256:1ff6c18fbef2045af6b9c16bf034cc421a29027b800e4f9b68ae9b1cb3e9ae07`
5354
You can find more information about digests format in the
54-
[OCI Image Specification](https://github.com/opencontainers/image-spec/blob/v1.1.0/descriptor.md#digests).
55+
[OCI Image Specification](https://github.com/opencontainers/image-spec/blob/master/descriptor.md#digests).
5556

5657
Some image name examples that Kubernetes can use are:
5758

0 commit comments

Comments
 (0)