1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/docs/how-to/configuring_tz.md

25 lines
555 B
Markdown
Raw Permalink Normal View History

---
layout: page
title: How to configure timezone
parent: 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:
```yaml
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.