From d3a961fb764ba53a23e86a552b87338ce756606d Mon Sep 17 00:00:00 2001 From: "Szekeres, Balazs (Nokia - HU/Budapest)" Date: Fri, 17 May 2019 10:15:33 +0200 Subject: [PATCH] Set time zone Tiller container now uses the host time zone settings. Change-Id: I5e9dc85498ab85eb4152406a91879fe6be57ac97 Signed-off-by: Szekeres, Balazs (Nokia - HU/Budapest) --- ansible/roles/helm/templates/tiller.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ansible/roles/helm/templates/tiller.yml b/ansible/roles/helm/templates/tiller.yml index 507a6da..e5641ff 100644 --- a/ansible/roles/helm/templates/tiller.yml +++ b/ansible/roles/helm/templates/tiller.yml @@ -49,4 +49,12 @@ spec: value: "{{ caas.internal_flannel_interface }}" - name: TILLER_PORT value: "{{ caas.tiller_port }}" + volumeMounts: + - name: time-mount + mountPath: /etc/localtime + readOnly: true + volumes: + - name: time-mount + hostPath: + path: /etc/localtime serviceAccountName: tiller -- 2.16.6