mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
24 lines
555 B
Markdown
24 lines
555 B
Markdown
---
|
|
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.
|
|
|