From bde860ddcde42d793065c3e99c800ff9e2585ca0 Mon Sep 17 00:00:00 2001 From: Abigail McCarthy <20771501+a-mccarthy@users.noreply.github.com> Date: Tue, 22 Mar 2022 10:25:23 -0400 Subject: [PATCH] Update content/en/docs/concepts/containers/images.md Co-authored-by: Tim Bannister --- content/en/docs/concepts/containers/images.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/docs/concepts/containers/images.md b/content/en/docs/concepts/containers/images.md index 70f2e959ce..c07880a458 100644 --- a/content/en/docs/concepts/containers/images.md +++ b/content/en/docs/concepts/containers/images.md @@ -278,7 +278,9 @@ Kubernetes supports specifying container image registry keys on a Pod. #### Creating a Secret with a Docker config -Using a Docker registry as an example, run the following command, substituting the appropriate uppercase values: +You need to know the username, registry password and client email address for authenticating +to the registry, as well as its hostname. +Run the following command, substituting the appropriate uppercase values: ```shell kubectl create secret docker-registry --docker-server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL