From 6f914c940447ffb21cfd780d8b6cc02f9c010bdb Mon Sep 17 00:00:00 2001 From: andersonid Date: Tue, 30 Sep 2025 21:05:40 -0300 Subject: [PATCH] Fix: update Prometheus URL to use HTTPS instead of HTTP --- app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/config.py b/app/core/config.py index 132e0b6..6c3cb01 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -15,7 +15,7 @@ class Settings(BaseSettings): token: Optional[str] = None # Prometheus settings - prometheus_url: str = "http://prometheus-k8s.openshift-monitoring.svc.cluster.local:9091" + prometheus_url: str = "https://prometheus-k8s.openshift-monitoring.svc.cluster.local:9091" # Validation settings cpu_limit_ratio: float = 3.0 # Default limit:request ratio for CPU