helm/headscale/server/daemonset.yaml
2023-05-07 12:40:12 +00:00

42 lines
936 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: headscale
spec:
template:
metadata:
labels:
app: headscale
spec:
#hostNetwork: true
volumes:
- name: data
persistentVolumeClaim:
claimName: headscale
- name: certs
secret:
secretName: wetofu-me-certs
- name: config
configMap:
name: headscale
containers:
- name: headscale
image: ghcr.io/juanfont/headscale
resources:
limits:
cpu: "1"
memory: "512Mi"
command:
- headscale
- serve
volumeMounts:
- name: data
mountPath: /var/lib/headscale
- name: certs
mountPath: /certs
- name: config
mountPath: /etc/headscale
selector:
matchLabels:
app: headscale