We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78b65e3 commit a1317c0Copy full SHA for a1317c0
1 file changed
charts/controller/templates/controller-deployment.yaml
@@ -22,6 +22,19 @@ spec:
22
app: drycc-controller
23
spec:
24
serviceAccount: drycc-controller
25
+ initContainers:
26
+ - name: drycc-controller-init
27
+ image: {{.Values.image_registry}}/{{.Values.image_org}}/python-dev:latest
28
+ imagePullPolicy: {{.Values.image_pull_policy}}
29
+ command:
30
+ - netcat
31
+ - -v
32
+ - -s
33
+ - ,
34
+ - -u
35
+ - $(DRYCC_DATABASE_URL),$(DRYCC_RABBITMQ_URL),$(DRYCC_REDIS_ADDRS)
36
+ {{- include "controller.limits" . | indent 10 }}
37
+ {{- include "controller.envs" . | indent 10 }}
38
containers:
39
- name: drycc-controller
40
image: {{.Values.image_registry}}/{{.Values.image_org}}/controller:{{.Values.image_tag}}
0 commit comments