diff --git a/docs/images.md b/docs/images.md index c5ef76a82b0..208f399ed00 100644 --- a/docs/images.md +++ b/docs/images.md @@ -25,7 +25,7 @@ Credentials can be provided in several ways: - Pre-pulling Images - all pods can use any images cached on a node - requires root access to all nodes to setup - - Specifying ImagePullKeys on a Pod + - Specifying ImagePullSecrets on a Pod - only pods which provide own keys can access the private registry Each option is described in more detail below. @@ -72,39 +72,42 @@ All pods will have read access to any pre-pulled images. Kubernetes supports specifying registry keys on a pod. First, create a `.dockercfg`, such as running `docker login `. -Then put the resulting `.dockercfg` file into a [secret resource](../docs/secret.md). For example: +Then put the resulting `.dockercfg` file into a [secret resource](../docs/secrets.md). For example: ``` -cat > dockercfg < secret.json < image-pull-secret.yaml <