We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf2b091 commit a75f059Copy full SHA for a75f059
2 files changed
charts/controller/templates/_helpers.tpl
@@ -135,7 +135,7 @@ env:
135
valueFrom:
136
secretKeyRef:
137
name: controller-creds
138
- key: rabbitmqUrl
+ key: rabbitmq-url
139
{{- else if eq .Values.global.rabbitmqLocation "on-cluster" }}
140
- name: "DRYCC_RABBITMQ_USERNAME"
141
charts/controller/templates/controller-secret-creds.yaml
@@ -13,5 +13,8 @@ data:
13
{{- if (.Values.databaseReplicaUrl) }}
14
database-replica-url: {{ .Values.databaseReplicaUrl | b64enc }}
15
{{- end }}
16
+ {{- if (.Values.rabbitmqUrl) }}
17
+ rabbitmq-url: {{ .Values.rabbitmqUrl | b64enc }}
18
+ {{- end }}
19
django-secret-key: {{ randAscii 64 | b64enc }}
20
deploy-hook-secret-key: {{ randAscii 64 | b64enc }}
0 commit comments