Image Pull Secrets

This page describes how to ensure that your customers can access your private containers.

In order to ensure that your customer’s deployments are allowed to fetch your images, we create a new Kubernetes secret named mm-registry-creds with customer-specific docker credentials in the default namespace. Below is an example of how to use imagePullSecrets in a Deployment to ensure that you can pull from your private container registry:

apiVersion: apps/v1
kind: Deployment
metadata:
  <...>
spec:
  template:
    <...>
    spec:
      containers:
        <...>
      imagePullSecrets:
      - name: mm-registry-creds

Image pull secrets are only automatically generated for vendors who host their containers in Google Container Registry. If you need to have private repository but cannot use Google Container Registry, please contact Metamanagement directly.

Last updated