Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 1.39 KB

File metadata and controls

59 lines (50 loc) · 1.39 KB

Image Security

In this section we will take a look at image security

Image

apiVersion: v1
kind: Pod
metadata:
  name: nginx-pod
spec:
  containers:
  - name: nginx
    image: nginx

img1

img2

Private Registry

  • To login to the registry

    $ docker login private-registry.io
    
  • Run the application using the image available at the private registry

    $ docker run private-registry.io/apps/internal-app
    

    prvr

  • To pass the credentials to the docker untaged on the worker node for that we first create a secret object with credentials in it.

    $ kubectl create secret docker-registry regcred \
      --docker-server=private-registry.io \ 
      --docker-username=registry-user \
      --docker-password=registry-password \
      --docker-email=registry-user@org.com
    
  • We then specify the secret inside our pod definition file under the imagePullSecret section

    apiVersion: v1
    kind: Pod
    metadata:
      name: nginx-pod
    spec:
      containers:
      - name: nginx
        image: private-registry.io/apps/internal-app
      imagePullSecrets:
      - name: regcred
    

    prvr1

    K8s Reference Docs