Skip to content

Commit 1096826

Browse files
committed
feat(charts): adding external docker_registry support
1 parent 20bb5e7 commit 1096826

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

charts/controller/templates/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
serviceAccount: drycc-controller
2525
containers:
2626
- name: drycc-controller
27-
image: quay.io/{{.Values.org}}/controller:{{.Values.docker_tag}}
27+
image: {{.Values.docker_registry}}{{.Values.org}}/controller:{{.Values.docker_tag}}
2828
imagePullPolicy: {{.Values.pull_policy}}
2929
livenessProbe:
3030
httpGet:

charts/controller/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
org: "drycc"
22
pull_policy: "Always"
3-
docker_tag: canary
3+
docker_tag: "canary"
4+
docker_registry: ""
45
app_pull_policy: "Always"
56
# A comma-separated list of URLs to send app release information to
67
# See https://drycc.com/docs/workflow/managing-workflow/deploy-hooks

0 commit comments

Comments
 (0)