From 8b3bc5a611778dd0bcd5aee794f062f385774797 Mon Sep 17 00:00:00 2001 From: yuryn Date: Wed, 13 Sep 2017 19:21:03 +0300 Subject: Containers time zone sync Make sure time zones on the containers are in sync with the hosting machines Change-Id: Ie22608bda63cbcdf564f73adcdd3e829afad05ca Issue-ID: OOM-299 Signed-off-by: yuryn --- kubernetes/mso/templates/db-deployment.yaml | 6 ++++++ kubernetes/mso/templates/mso-deployment.yaml | 6 ++++++ 2 files changed, 12 insertions(+) (limited to 'kubernetes/mso') diff --git a/kubernetes/mso/templates/db-deployment.yaml b/kubernetes/mso/templates/db-deployment.yaml index 389fb5ab75..4722c4a0c5 100644 --- a/kubernetes/mso/templates/db-deployment.yaml +++ b/kubernetes/mso/templates/db-deployment.yaml @@ -28,6 +28,9 @@ spec: - name: MARIADB_VERSION value: "10.1.11+maria-1~jessie" volumeMounts: + - mountPath: /etc/localtime + name: localtime + readOnly: true - mountPath: /etc/mysql/conf.d name: mso-mariadb-conf - mountPath: /docker-entrypoint-initdb.d @@ -43,6 +46,9 @@ spec: initialDelaySeconds: 5 periodSeconds: 10 volumes: + - name: localtime + hostPath: + path: /etc/localtime - name: mso-mariadb-conf hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/mso/mariadb/conf.d diff --git a/kubernetes/mso/templates/mso-deployment.yaml b/kubernetes/mso/templates/mso-deployment.yaml index 0f3034f4cc..8973db3e6f 100644 --- a/kubernetes/mso/templates/mso-deployment.yaml +++ b/kubernetes/mso/templates/mso-deployment.yaml @@ -47,6 +47,9 @@ spec: imagePullPolicy: {{ .Values.pullPolicy }} name: mso volumeMounts: + - mountPath: /etc/localtime + name: localtime + readOnly: true - mountPath: /shared name: mso - mountPath: /docker-files @@ -66,6 +69,9 @@ spec: initialDelaySeconds: 5 periodSeconds: 10 volumes: + - name: localtime + hostPath: + path: /etc/localtime - name: mso hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/mso/mso -- cgit 1.2.3-korg