v1.0.1 changes #11

Manually merged
Raven merged 54 commits from betterauth into main 2025-03-21 23:36:08 -04:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit e28219c8b7 - Show all commits

View File

@@ -20,9 +20,14 @@ spec:
image: "{{ $.Values.repository }}/{{ .image }}"
ports:
- containerPort: {{ .port }}
env:
- name: DATABASE_URL
value: "postgres://$(POSTGRES_USER):$(POSTGRES_PASSWORD)@postgres:5432/$(POSTGRES_DB)"
envFrom:
- configMapRef:
name: {{ .name }}-env
- secretRef:
name: postgres-secrets
volumeMounts:
- name: service-ids
mountPath: /services

View File

@@ -8,7 +8,7 @@ global:
env:
LOG_LEVEL: "info"
APP_ENV: "dev"
DATABASE_URL: "postgres://postgres:5432/osirose"
DATABASE_URL: "" # This is a placeholder. Will be dynamically constructed
services:
- name: api-service