mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
555 B
555 B
layout | title | parent |
---|---|---|
page | How to configure timezone | How to ... |
How to configure timezone
To set timezone for cluster components, mount the required timezone into container
by adjusting spec.<group>
of ArangoDeployment resource:
dbservers:
volumeMounts:
- mountPath: /etc/localtime
name: timezone
volumes:
- hostPath:
path: /usr/share/zoneinfo/Europe/Warsaw
type: File
name: timezone
If /usr/share/zoneinfo
is not present on your host your probably have to install tzdata
package.