Kubernetes

How to use /dev/shm from Kubernetes pods on

Following up from this, I also had to add /dev/shm to Frigate. A SHM device is simply a temporary filesystem which uses RAM as a storage instead of a persistent storage.

In a pod definition this is …

How to use GPU hardware acceleration from Kubernetes pods on

I have been slowly migrating the containers in my homelab to kubernetes, and recently I have done Frigate. Frigate is not a standard container, it requires a few extra features to run. Internally it …

A few things about Cilium and DNS on

Some learnings from the webinar I attended yesterday:

FQDN, PQDN, hostnames and root zones

You can tell the DNS resolver to not traverse the search path if you explicitly put a full stop …

Container ports do not have to be exposed explicitly in Kubernetes pods on

All containers that are part of a pod have the same network namespace, and (can) bind to all IPs in that namespace. Kubernetes does not offer any implicit filtering between pod network namespace and …