# Template for Kubernetes Secrets # IMPORTANT: Do not commit this file with real values! # Create actual secret with: # kubectl create secret generic datacenter-secrets \ # --from-literal=mongodb-url='mongodb://admin:password@mongodb:27017' \ # --from-literal=mongodb-root-user='admin' \ # --from-literal=mongodb-root-password='secure_password' \ # --from-literal=redis-url='redis://:password@redis:6379/0' \ # --from-literal=mcp-api-key='your-mcp-key' \ # --from-literal=anthropic-api-key='sk-ant-api03-xxx' \ # -n datacenter-docs apiVersion: v1 kind: Secret metadata: name: datacenter-secrets namespace: datacenter-docs type: Opaque stringData: # MongoDB mongodb-url: "mongodb://admin:CHANGE_ME@mongodb:27017" mongodb-root-user: "admin" mongodb-root-password: "CHANGE_ME" # Redis redis-url: "redis://:CHANGE_ME@redis:6379/0" # MCP Server mcp-api-key: "CHANGE_ME" # Anthropic Claude anthropic-api-key: "sk-ant-api03-CHANGE_ME"