labmap/labmap-chart/templates/frontend-deployment.yaml
2025-06-13 19:09:03 +03:00

20 lines
416 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: labmap-frontend
spec:
replicas: 1
selector:
matchLabels:
app: labmap-frontend
template:
metadata:
labels:
app: labmap-frontend
spec:
containers:
- name: frontend
image: {{ .Values.frontend.image }}:{{ .Values.frontend.tag }}
ports:
- containerPort: {{ .Values.frontend.port }}