my-apps/charts/labmap-chart/templates/frontend-deployment.yaml
2026-03-24 07:58:18 +02:00

27 lines
645 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:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: frontend
image: {{ .Values.frontend.image }}:{{ .Values.frontend.tag }}
ports:
- containerPort: {{ .Values.frontend.port }}
env:
- name: API_BASE
value: {{ .Values.frontend.env.API_BASE | quote }}