diff --git a/helm/robusta/Chart.lock b/helm/robusta/Chart.lock index 744b0e0b7..d1588b552 100644 --- a/helm/robusta/Chart.lock +++ b/helm/robusta/Chart.lock @@ -4,6 +4,6 @@ dependencies: version: 55.7.0 - name: holmes repository: https://robusta-charts.storage.googleapis.com - version: 0.6.1 -digest: sha256:adafc16cc9d9398d9e268b410bbf7461169b9633f6ad8582ad7328f94187824a -generated: "2024-11-08T18:15:36.700936+02:00" + version: 0.7.2 +digest: sha256:39c7e9f5e2ec7a59eb3b88627e930294ae2de9bf072b83a792977c1e9a630132 +generated: "2024-12-11T13:42:23.882949+02:00" diff --git a/helm/robusta/charts/holmes-0.6.1.tgz b/helm/robusta/charts/holmes-0.6.1.tgz deleted file mode 100644 index 4dd137eab..000000000 Binary files a/helm/robusta/charts/holmes-0.6.1.tgz and /dev/null differ diff --git a/helm/robusta/charts/holmes-0.7.2.tgz b/helm/robusta/charts/holmes-0.7.2.tgz new file mode 100644 index 000000000..c60469129 Binary files /dev/null and b/helm/robusta/charts/holmes-0.7.2.tgz differ diff --git a/playbooks/robusta_playbooks/krr.py b/playbooks/robusta_playbooks/krr.py index d13e24998..6f8a30ef4 100644 --- a/playbooks/robusta_playbooks/krr.py +++ b/playbooks/robusta_playbooks/krr.py @@ -36,6 +36,7 @@ IMAGE: str = os.getenv("KRR_IMAGE_OVERRIDE", f"{IMAGE_REGISTRY}/krr:v1.18.0") KRR_MEMORY_LIMIT: str = os.getenv("KRR_MEMORY_LIMIT", "2Gi") KRR_MEMORY_REQUEST: str = os.getenv("KRR_MEMORY_REQUEST", "2Gi") +KRR_STRATEGY: str = os.getenv("KRR_STRATEGY", "simple") SeverityType = Literal["CRITICAL", "WARNING", "OK", "GOOD", "UNKNOWN"] @@ -119,7 +120,7 @@ class KRRParams(PrometheusParams, PodRunningParams): """ serviceAccountName: str = RUNNER_SERVICE_ACCOUNT - strategy: str = "simple" + strategy: str = KRR_STRATEGY args: Optional[str] = None krr_args: str = "" timeout: int = 3600