Kubernetes pull images from private docker registry

Command line to create secrets for kubernetes

kubectl create secret docker-registry regcred --docker-server=<your-registry-server> --docker-username=<your-name> --docker-password=<your-pword> --docker-email=<your-email>

Reference:

Scroll to Top