deis / builder

Git server and application builder for Deis Workflow
https://deis.com
MIT License
40 stars 41 forks source link

[Proposal]: allow the use of imagePullSecrets #221

Closed aledbf closed 8 years ago

aledbf commented 8 years ago

This is required to pull images from a private registry with authentication Just in case I mean just the name, not the creation

        env:
            - name: "PULL_SECRETS"
              value: "priv-reg1,priv-reg2"

The previous example assumes that the required secret already exists

kubectl create secret docker-registry <name (priv-reg1)> \
    --docker-server=<url> \
    --docker-username=<username> \
    --docker-password=<pass> \
    --namespace deis
kmala commented 8 years ago

private registry support is added in deis https://github.com/deis/workflow/pull/400