32 lines
796 B
YAML
32 lines
796 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: motivator-config
|
|
namespace: team1tier-healthsync-motivator-ns
|
|
data:
|
|
# Application Settings
|
|
APP_NAME: "HealthSync Motivator Batch"
|
|
APP_VERSION: "1.0.0"
|
|
DEBUG: "false"
|
|
LOG_LEVEL: "INFO"
|
|
|
|
# Database Configuration
|
|
DB_HOST: "psql-digitalgarage-01.postgres.database.azure.com"
|
|
DB_PORT: "5432"
|
|
DB_NAME: "healthsync_db"
|
|
DB_USERNAME: "team1tier"
|
|
|
|
# Claude AI Configuration
|
|
CLAUDE_MODEL: "claude-3-5-sonnet-20241022"
|
|
CLAUDE_MAX_TOKENS: "150"
|
|
CLAUDE_TEMPERATURE: "0.7"
|
|
CLAUDE_TIMEOUT: "30"
|
|
|
|
# Batch Configuration
|
|
BATCH_SIZE: "100"
|
|
MAX_RETRIES: "3"
|
|
|
|
# Azure Service Bus Configuration
|
|
AZURE_SERVICEBUS_NAMESPACE: "sb-healthsync.servicebus.windows.net"
|
|
AZURE_SERVICEBUS_QUEUE_NAME: "healthsync-notifications"
|