Add base kubernetes support 5

This commit is contained in:
Urtzi Alfaro
2025-09-27 22:55:42 +02:00
parent f246381d34
commit b95ecf1c53
9 changed files with 274 additions and 43 deletions

View File

@@ -55,7 +55,7 @@ class BaseServiceSettings(BaseSettings):
# REDIS CONFIGURATION
# ================================================================
REDIS_URL: str = os.getenv("REDIS_URL", "redis://redis:6379")
REDIS_URL: str = os.getenv("REDIS_URL", "redis://redis-service:6379")
REDIS_DB: int = int(os.getenv("REDIS_DB", "0"))
REDIS_MAX_CONNECTIONS: int = int(os.getenv("REDIS_MAX_CONNECTIONS", "50"))
REDIS_RETRY_ON_TIMEOUT: bool = True