Skip to content

Commit b8dccbc

Browse files
authored
fix(public-api-gateway): add missing rabbitmq init container (#439)
Service is using rabbitmq but is missing init container that waits for rabbitmq pod bootup ## 📝 Description <!-- Describe your changes in detail --> ## ✅ Checklist - [x] I have tested this change - [ ] ~This change requires documentation update~
1 parent daf129e commit b8dccbc

File tree

1 file changed

+3
-1
lines changed
  • public-api-gateway/helm/templates

1 file changed

+3
-1
lines changed

public-api-gateway/helm/templates/dpl.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ spec:
4040
- name: {{ . }}
4141
{{- end }}
4242
{{- end }}
43+
initContainers:
44+
{{ include "initContainers.waitForRabbitMQ" . | indent 8 }}
4345
automountServiceAccountToken: false
4446
containers:
4547
- name: "{{ .Chart.Name }}"
@@ -73,4 +75,4 @@ spec:
7375
{{- if .Values.resources }}
7476
resources:
7577
{{ toYaml .Values.resources | indent 13 }}
76-
{{- end }}
78+
{{- end }}

0 commit comments

Comments
 (0)