2023-01-25 17:07:25 +01:00
---
sidebar_position: 40
---
# Kubernetes
2024-05-03 14:03:45 +02:00
You can deploy Immich on Kubernetes using [the official Helm chart ](https://github.com/immich-app/immich-charts/blob/main/README.md ).
2023-01-25 17:07:25 +01:00
2024-04-16 18:58:19 -04:00
You can view some [examples ](https://kubesearch.dev/#/immich ) of how other people run Immich on Kubernetes, using the official chart or otherwise.
2023-01-25 17:07:25 +01:00
:::caution DNS in Alpine containers
2023-03-31 11:25:53 +01:00
Immich makes use of Alpine container images. These can encounter [a DNS resolution bug ](https://stackoverflow.com/a/65593511 ) on Kubernetes clusters if the host
2023-01-25 17:07:25 +01:00
nodes have a search domain set, like:
```
$ cat /etc/resolv.conf
search home.lan
nameserver 192.168.1.1
```
2023-03-31 11:25:53 +01:00
:::