11 lines
264 B
YAML
11 lines
264 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: todo-config
|
|
data:
|
|
DATABASE_URL: "jdbc:postgresql://todo-postgres:5432/building_materials"
|
|
DATABASE_USERNAME: "postgres"
|
|
REDIS_HOST: "todo-redis"
|
|
REDIS_PORT: "6379"
|
|
API_BASE_URL: "http://todo-backend:8080"
|