diff options
author | yuryn <Yury.Novitsky@Amdocs.com> | 2017-09-13 19:21:03 +0300 |
---|---|---|
committer | Yury Novitsky <Yury.Novitsky@Amdocs.com> | 2017-09-14 15:17:08 +0000 |
commit | c249ac62095eaedc27faeab627ef97ac71af68f7 (patch) | |
tree | 1490d1dd9d14cb31cba13fcf4bb7a931318d73ee /templates | |
parent | 987e2c24f47097aa496f8ef6e2df24f8326bb861 (diff) |
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 <Yury.Novitsky@Amdocs.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/robot-deployment.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/robot-deployment.yaml b/templates/robot-deployment.yaml index 3a98f87..da017db 100644 --- a/templates/robot-deployment.yaml +++ b/templates/robot-deployment.yaml @@ -18,6 +18,9 @@ spec: imagePullPolicy: {{ .Values.pullPolicy }} name: robot volumeMounts: + - name: localtime + mountPath: /etc/localtime + readOnly: true - name: robot-eteshare mountPath: /share - name: robot-resources-asdc-interface @@ -44,6 +47,9 @@ spec: initialDelaySeconds: 5 periodSeconds: 10 volumes: + - name: localtime + hostPath: + path: /etc/localtime - name: robot-eteshare hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/eteshare |