We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0b2fa6 commit cd3884dCopy full SHA for cd3884d
2 files changed
charts/database/templates/database-deployment.yaml
@@ -22,7 +22,7 @@ spec:
22
serviceAccount: drycc-database
23
containers:
24
- name: drycc-database
25
- image: quay.io/{{.Values.org}}/postgres:{{.Values.docker_tag}}
+ image: {{.Values.docker_registry}}{{.Values.org}}/postgres:{{.Values.docker_tag}}
26
imagePullPolicy: {{.Values.pull_policy}}
27
ports:
28
- containerPort: 5432
charts/database/values.yaml
@@ -1,6 +1,7 @@
1
org: "drycc"
2
pull_policy: "Always"
3
-docker_tag: canary
+docker_tag: "canary"
4
+docker_registry: ""
5
# limits_cpu: "100m"
6
# limits_memory: "50Mi"
7
# The username and password to be used by the on-cluster database.
0 commit comments