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

@@ -42,6 +42,11 @@ jobs:
--from-literal=SECRET_KEY_BASE=$(openssl rand -hex 64) \
--from-literal=AI_TOKEN="$AI_TOKEN"
kubectl create configmap db-schema \
--from-file=schema.sql=schema.sql \
--namespace ai-ha-elixir \
--dry-run=client -o yaml | kubectl apply -f -
for file in kubernetes/*.yml; do
cat "$file" | envsubst | kubectl apply -f -
done