Files
homelab/k8s/infra/vpn/netbird/dashboard/deployment.yaml
Vegard Hagen 0149a02e4c feat(netbird): replace dashboard helm chart with plain manifests
imho the chart doesn't add much here
2025-01-04 21:53:23 +01:00

35 lines
807 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: dashboard
namespace: netbird
spec:
selector:
matchLabels:
app.kubernetes.io/name: dashboard
template:
metadata:
labels:
app.kubernetes.io/name: dashboard
spec:
containers:
- name: dashboard
image: docker.io/netbirdio/dashboard:v2.8.2 # renovate: docker=docker.io/netbirdio/dashboard
envFrom:
- configMapRef:
name: dashboard-config
ports:
- name: http
containerPort: 80
readinessProbe:
failureThreshold: 3
httpGet:
path: /
port: http
resources:
requests:
memory: 32Mi
cpu: 10m
limits:
memory: 128Mi
cpu: 2000m