From cbf6e146c432385b6ded4cb8f71c6cf179b3d910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyulai=20D=C3=A1niel?= Date: Thu, 19 Nov 2020 17:11:05 -0500 Subject: [PATCH] Added init container to covid deployment to wait for mysql --- helm/covidok/templates/deployment.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/helm/covidok/templates/deployment.yaml b/helm/covidok/templates/deployment.yaml index 66f8ed0..998b32b 100644 --- a/helm/covidok/templates/deployment.yaml +++ b/helm/covidok/templates/deployment.yaml @@ -5,7 +5,7 @@ metadata: labels: {{- include "covidok.labels" . | nindent 4 }} spec: - replicas: 1 + replicas: 3 selector: matchLabels: {{- include "covidok.selectorLabels" . | nindent 6 }} @@ -22,6 +22,11 @@ spec: imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} + initContainers: + - name: mysql + image: mysql:8.0 + command: ["/bin/bash"] + args: ["-c", "while ! mysqladmin ping -h mysql --silent; do sleep 1; done"] containers: - name: {{ .Chart.Name }} image: "{{ .Values.images.covidok.name }}:{{ .Values.images.covidok.tag }}"