Documentation
  • Getting Started
  • Creating a Product
    • Products Overview
    • Making a Helm Chart
      • Converting from docker-compose
      • Interpolated Values
      • Image Pull Secrets
      • Cluster Ingress
      • SSL Certificates
    • Setting up the Registry
      • Google Container Registry
  • Deploying a Product
    • Deployments Overview
    • Deploying on AWS
    • Deploying on GCP
    • Deploying on Azure (beta)
  • Debugging
    • GCP Permissions Errors
    • Volume Classes
Powered by GitBook
On this page
  1. Creating a Product
  2. Making a Helm Chart

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.

PreviousInterpolated ValuesNextCluster Ingress

Last updated 4 years ago