Forked from rkuzsma/gist:b9a0e342c56479f5e58d654b1341f01e
Created
February 27, 2018 10:52
-
-
Save trinvh/af1adef88213fe76917d941a7430f97c to your computer and use it in GitHub Desktop.
Example Kubernetes yaml to pull a private DockerHub image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step by step how to pull a private DockerHub hosted image in a Kubernetes YML. | |
export DOCKER_REGISTRY_SERVER=https://index.docker.io/v1/ | |
export DOCKER_USER=Type your dockerhub username, same as when you `docker login` | |
export DOCKER_EMAIL=Type your dockerhub email, same as when you `docker login` | |
export DOCKER_PASSWORD=Type your dockerhub pw, same as when you `docker login` | |
kubectl create secret docker-registry myregistrykey \ | |
--docker-server=$DOCKER_REGISTRY_SERVER \ | |
--docker-username=$DOCKER_USER \ | |
--docker-password=$DOCKER_PASSWORD \ | |
--docker-email=$DOCKER_EMAIL | |
If your username on DockerHub is DOCKER_USER, and your private repo is called PRIVATE_REPO_NAME, and the image you want to pull is tagged "latest", create this dummy.yaml file: | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: foo | |
spec: | |
containers: | |
- name: whatever | |
image: index.docker.io/DOCKER_USER/PRIVATE_REPO_NAME:latest | |
imagePullPolicy: Always | |
command: [ "echo", "SUCCESS" ] | |
imagePullSecrets: | |
- name: myregistrykey | |
Then run: | |
kubectl create -f dummy.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment