From: Szekeres, Balazs (Nokia - HU/Budapest) Date: Fri, 17 May 2019 08:15:33 +0000 (+0200) Subject: Set time zone X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fcaas-helm.git;a=commitdiff_plain;h=d3a961fb764ba53a23e86a552b87338ce756606d Set time zone Tiller container now uses the host time zone settings. Change-Id: I5e9dc85498ab85eb4152406a91879fe6be57ac97 Signed-off-by: Szekeres, Balazs (Nokia - HU/Budapest) --- 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