You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/06/12 19:48:32 UTC

[GitHub] dgrove-oss commented on issue #3622: make containers' timezone sync with the docker host

dgrove-oss commented on issue #3622: make containers' timezone sync with the docker host
URL: https://github.com/apache/incubator-openwhisk/pull/3622#issuecomment-396711180
 
 
   For kube the ansible changes obviously won't do anything.
   What we would need to do is add pairs of stanza like the below to every pod specification.
   
   ```
           volumeMounts:
           - mountPath: /etc/localtime
             name: localtime
             readOnly: true
   ```
   ```
         volumes:
         - name: localtime
           hostPath:
             path: /etc/localtime
   ```
   I haven't tested this myself, but stackoverflow suggests it should work.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services