Files
homelab-config/homelab-services/nimh-static/k3s/deployment.yaml
T
2026-05-31 22:35:25 -05:00

33 lines
589 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: nimh-static
namespace: nimh
spec:
replicas: 1
selector:
matchLabels:
app: nimh-static
template:
metadata:
labels:
app: nimh-static
spec:
containers:
- name: nginx
image: nginx:stable
ports:
- containerPort: 80
volumeMounts:
- name: static-files
mountPath: /var/nimh-static/site
readOnly: true
volumes:
- name: static-files
configMap:
name: nimh-static-files