Add CI/CD for AI service
All checks were successful
CI / test (push) Successful in 25s
Build and Deploy / build-and-deploy (push) Successful in 53s

This commit is contained in:
Grendgi
2026-06-08 13:37:06 +03:00
parent 9d65ee323c
commit 0081e910ba
6 changed files with 193 additions and 1 deletions

View File

@@ -1,8 +1,19 @@
apiVersion: v1
kind: Secret
metadata:
name: postgres-secret
namespace: ai-service
type: Opaque
stringData:
POSTGRES_USER: "ai_service"
POSTGRES_PASSWORD: "ai_service"
POSTGRES_DB: "ai_service"
---
apiVersion: v1
kind: Secret
metadata:
name: ai-service-secrets
namespace: ai-service
type: Opaque
stringData:
DATABASE_URL: "postgres://ai_service:CHANGE_ME@postgres:5432/ai_service?sslmode=disable"
DATABASE_URL: "postgres://ai_service:ai_service@postgres:5432/ai_service?sslmode=disable"