From 66a9a5c4a387974e81b210fc9fa0024239582027 Mon Sep 17 00:00:00 2001 From: BorislavG Date: Wed, 6 Sep 2017 15:12:46 +0300 Subject: Persistent volumes for Database storage Addition of persistent volumes for all DBs including persistence of policy mariadb (with initial configuration data) Change-Id: I029e724c3f8bba7fe3599b0955a4a3d213c08163 Issue-ID: OOM-268 Signed-off-by: BorislavG --- kubernetes/policy/templates/dep-maria.yaml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'kubernetes/policy/templates/dep-maria.yaml') diff --git a/kubernetes/policy/templates/dep-maria.yaml b/kubernetes/policy/templates/dep-maria.yaml index abbfdd8f4b..2b0e40eb4e 100644 --- a/kubernetes/policy/templates/dep-maria.yaml +++ b/kubernetes/policy/templates/dep-maria.yaml @@ -24,10 +24,17 @@ spec: name: mariadb ports: - containerPort: 3306 + volumeMounts: + - mountPath: /var/lib/mysql + name: policy-mariadb-data readinessProbe: tcpSocket: port: 3306 initialDelaySeconds: 5 periodSeconds: 10 + volumes: + - name: policy-mariadb-data + persistentVolumeClaim: + claimName: policy-db imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" -- cgit 1.2.3-korg