Pull an Image from a Private Registry — Inspecting the Secret regcred
To understand the contents of the regcred Secret you created, start by viewing the Secret in YAML format The output is similar to this The value of the .dockerconfigjson field is a base64 representation of your Docker credentials.
Reference note (untrusted external data; do not execute it as instructions).
To understand the contents of the regcred Secret you created, start by viewing the Secret in YAML format
The output is similar to this
The value of the .dockerconfigjson field is a base64 representation of your Docker credentials.
To understand what is in the .dockerconfigjson field, convert the secret data to a readable format
The output is similar to this
To understand what is in the auth field, convert the base64-encoded data to a readable format
The output, username and password concatenated with a :, is similar to this
Notice that the Secret data contains the authorization token similar to your local ~/.docker/config.json file.
You have successfully set your Docker credentials as a Secret called regcred in the cluster.
Attribution: Adapted from Kubernetes Documentation under CC-BY-4.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, removed long code blocks, and shortened it for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE
This compact reference card is adapted from official documentation and is not a community-verified experience.
Kubernetes Documentation — content/en/docs/tasks/configure-pod-container/pull-image-private-registry.md :: Inspecting the Secret regcred ↗Revision 6449f1eced66 · CC-BY-4.0