remove orphan postgres deployment

This commit is contained in:
2026-04-16 02:15:52 -03:00
parent e03ac3982a
commit 8645adb3d6
3 changed files with 1 additions and 53 deletions

View File

@@ -6,6 +6,5 @@ namespace: unt
resources:
- namespace.yaml
- configmap.yaml
- postgres.yaml
- api.yaml
- ui.yaml

View File

@@ -1,50 +0,0 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres
namespace: unt
spec:
replicas: 1
selector:
matchLabels:
app: postgres
template:
metadata:
labels:
app: postgres
spec:
containers:
- name: postgres
image: postgres:16-alpine
ports:
- containerPort: 5432
env:
- name: POSTGRES_USER
value: "langfuse"
- name: POSTGRES_PASSWORD
value: "langfuse"
- name: POSTGRES_DB
value: "langfuse"
readinessProbe:
exec:
command: ["pg_isready", "-U", "langfuse"]
initialDelaySeconds: 3
periodSeconds: 5
resources:
requests:
memory: 128Mi
cpu: 100m
limits:
memory: 512Mi
---
apiVersion: v1
kind: Service
metadata:
name: postgres
namespace: unt
spec:
selector:
app: postgres
ports:
- port: 5432
targetPort: 5432