diff options
Diffstat (limited to 'kubernetes/mso/templates/mso-deployment.yaml')
-rw-r--r-- | kubernetes/mso/templates/mso-deployment.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
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 |