Files
kubernetes-config/ptp-chat/ptp-chat-frontend.yaml
jona.klaess 77ab15718b
All checks were successful
Mirror to GitHub / mirror (push) Successful in 8s
reduce resources
2026-06-10 11:20:16 +02:00

43 lines
1.0 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: ptp-chat-frontend
namespace: ptp-chat
labels:
app: ptp-chat-frontend
spec:
selector:
matchLabels:
app: ptp-chat-frontend
template:
metadata:
labels:
app: ptp-chat-frontend
spec:
containers:
- name: ptp-chat-frontend
image: gitea.controller.bittehackmichnicht.de/apps/ptpchat-frontend/ptp-chat-frontend:latest
imagePullPolicy: Always
volumeMounts:
- name: env-volume
mountPath: /usr/share/nginx/html/env-config.js
subPath: frontend-env.js
ports:
- name: http
containerPort: 80
resources:
requests:
memory: 0.1Gi
cpu: 0.01
limits:
memory: 0.2Gi
cpu: 0.02
readinessProbe:
httpGet:
port: 80
imagePullSecrets:
- name: pull-secret
volumes:
- name: env-volume
configMap:
name: ptp-chat-frontend-env