PreviewHQ
  • Introduction
  • Basics
    • What is Continuous Product Review?
    • What is a Preview Environment?
    • Use Cases
      • Product and Stakeholder Review
      • QA Environments
      • Automated End-to-End Testing
      • Sales Demo Environments
      • Support Training
  • Getting Started
    • Installation
    • Add Configuration
    • Add a Cluster
    • Create a Deployment
      • with a Pull Request
      • with the Dashboard
      • with the CLI
      • with the API
  • Technical Stuff
    • Defining Deployments
      • Helm Charts
      • Kubernetes Manifests
      • [UNRELEASED] Terraform
    • Configuration File
      • Branches
      • Services
      • Chart Repositories
      • Chart Values
      • Docker Registries
      • Images
      • Webhooks
    • Template Strings
    • Using Seed Data
      • Using Shared Data Sources
    • Access Control
      • Preview Application Access
      • Preview Environment Access
    • Using Third-Party Integrations
    • Debugging
    • Current Limitations
  • Sample Applications
    • Emojivoto
    • Guestbook - Helm
    • Guestbook - Manifests
  • misc
    • FAQ
    • Changelog
    • Telemetry Data
    • Links
      • Homepace
      • Dashboard
Powered by GitBook
On this page

Was this helpful?

  1. Technical Stuff
  2. Configuration File

Docker Registries

The dockerRegistries key can specify additional Docker Registries to authenticate against during the build and deploy processes. This is often used during a build in order to build from a private base image.

These registry credentials are also used during deployment to allow your cluster to pull additional images from a private repository.

If you are using private images that are not built by Preview as part of your deployment, you will need to provide authentication to your Docker Registry in this way.

Key

Description

dockerRegistries[].service

The type of Docker registry this is. This determines how Preview authenticates. Current options are [docker, aws]

dockerRegistries[].url

The URL of the Docker registry

dockerRegistries[].username

[docker only] Account username

dockerRegistries[].password

[docker only] Account password

dockerRegistries[].AWS_ACCESS_KEY

[aws only] Access Key of IAM account

dockerRegistries[].AWS_SECRET_KEY

[aws only] Secret Key of IAM account

dockerRegistries[].AWS_ACCOUNT

[aws only] AWS Account ID of registry

dockerRegistries[].AWS_REGION

[aws only] AWS Region of registry

PreviousChart ValuesNextImages

Last updated 4 years ago

Was this helpful?