Files
adopt-a-street/deploy/k8s/configmap.yaml
William Valentin 00133d5e43 refactor: remove hardcoded namespaces from Kubernetes manifests
- Remove namespace: adopt-a-street from all metadata sections
- Update CouchDB NODENAME to use namespace-agnostic format
- Make all manifests deployable to any namespace
- Maintain service names and selectors for functionality
- All manifests validated with kubectl dry-run

Now manifests can be deployed to any namespace using:
kubectl apply -n <namespace> -f deploy/k8s/

🤖 Generated with [AI Assistant]

Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
2025-11-02 01:30:46 -08:00

26 lines
736 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: adopt-a-street-config
data:
# CouchDB Connection
COUCHDB_URL: "http://adopt-a-street-couchdb:5984"
COUCHDB_DB_NAME: "adopt-a-street"
# Backend Configuration
PORT: "5000"
NODE_ENV: "production"
# Frontend URL (update with your actual domain)
FRONTEND_URL: "http://adopt-a-street.local"
# Cloudinary Configuration (placeholders - update with real values)
CLOUDINARY_CLOUD_NAME: "your-cloudinary-cloud-name"
CLOUDINARY_API_KEY: "your-cloudinary-api-key"
# Stripe Configuration (optional - currently mocked)
# STRIPE_PUBLISHABLE_KEY: "your-stripe-publishable-key"
# OpenAI Configuration (optional - for AI features)
# OPENAI_API_KEY: "your-openai-api-key"