db startup
All checks were successful
CI/CD Pipeline / build (push) Successful in 11s

This commit is contained in:
2026-03-09 15:12:10 -06:00
parent ff48786d24
commit 25be2e5210
3 changed files with 15 additions and 2 deletions

View File

@@ -25,6 +25,10 @@ spec:
value: "elixir_ai"
- name: POSTGRES_DB
value: "elixir_ai"
volumeMounts:
- name: schema
mountPath: /docker-entrypoint-initdb.d
readOnly: true
readinessProbe:
exec:
command: ["pg_isready", "-U", "elixir_ai"]
@@ -37,6 +41,10 @@ spec:
limits:
memory: "512Mi"
cpu: "500m"
volumes:
- name: schema
configMap:
name: db-schema
---
apiVersion: v1