Files
hlaeja-development/helm/charts/05-device-configuration/templates/03-deployment.yaml
Swordsteel 638be7dc51 helm hlaeja device configuration
- update actuator.http
- update helmfile.yaml
- add 04-service.yaml
- add 03-deployment.yaml
- add 02-configmap.yaml
- add 01-secret.yaml
- add values.yaml
- add Chart.yaml
2025-07-28 11:37:04 +02:00

32 lines
809 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: device-configuration
labels:
app: device-configuration
environment: {{ .Values.environment }}
tier: backend
spec:
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: device-configuration
template:
metadata:
labels:
app: device-configuration
spec:
imagePullSecrets:
- name: {{ .Values.docker.registry }}
containers:
- name: device-configuration-app
image: {{ .Values.docker.image }}
imagePullPolicy: IfNotPresent
envFrom:
- configMapRef:
name: device-configuration-environment
- secretRef:
name: device-configuration-environment
ports:
- containerPort: 8080