Update environment configuration and refactor activity imports - Changed Kafka, Redis, and Temporal host configurations to use localhost. - Updated the version reference for the sientia-dataops-library in requirements.txt. - Refactored import paths for activities to align with new module structure. - Removed unused base.py and postgres.py files. - Updated logger and policies imports to reflect new module locations. - Adjusted values.yaml for branch and log level settings.
21 lines
362 B
Bash
21 lines
362 B
Bash
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=sientia
|
|
POSTGRES_PASSWORD=sientia
|
|
POSTGRES_DB=sientia
|
|
POSTGRES_MIN_CONNECTIONS=5
|
|
POSTGRES_MAX_CONNECTIONS=20
|
|
|
|
KAFKA_BOOTSTRAP_SERVERS=localhost:9092
|
|
KAFKA_POLLING_TIME=1000
|
|
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
TEMPORAL_HOST=localhost:7233
|
|
TEMPORAL_NAMESPACE=default
|
|
|
|
LOG_LEVEL=INFO
|
|
|
|
PROJECT_NAME=scouter
|