Skip to content

Commit 50f7f84

Browse files
authored
Fix bug - wrong condition with HOLMES_ENABLED env var (#1472)
* Fix bug - wrong condition with HOLMES_ENABLED env var * bump krr image
1 parent 5daf1b9 commit 50f7f84

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

helm/robusta/templates/runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ spec:
8181
- name: DISABLE_HELM_MONITORING
8282
value: "True"
8383
{{- end }}
84-
{{- if not .Values.enableHolmesGPT }}
84+
{{- if .Values.enableHolmesGPT }}
8585
- name: HOLMES_ENABLED
8686
value: "True"
8787
{{- end }}

playbooks/robusta_playbooks/krr.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from hikaru.model.rel_1_26 import Container, EnvVar, EnvVarSource, PodSpec, ResourceRequirements, SecretKeySelector
1111
from prometrix import AWSPrometheusConfig, CoralogixPrometheusConfig, PrometheusAuthorization, PrometheusConfig
1212
from pydantic import BaseModel, ValidationError, validator
13+
1314
from robusta.api import (
1415
IMAGE_REGISTRY,
1516
RUNNER_SERVICE_ACCOUNT,
@@ -32,7 +33,7 @@
3233
from robusta.integrations.openshift import IS_OPENSHIFT
3334
from robusta.integrations.prometheus.utils import generate_prometheus_config
3435

35-
IMAGE: str = os.getenv("KRR_IMAGE_OVERRIDE", f"{IMAGE_REGISTRY}/krr:v1.10.0")
36+
IMAGE: str = os.getenv("KRR_IMAGE_OVERRIDE", f"{IMAGE_REGISTRY}/krr:v1.11.0")
3637
KRR_MEMORY_LIMIT: str = os.getenv("KRR_MEMORY_LIMIT", "2Gi")
3738
KRR_MEMORY_REQUEST: str = os.getenv("KRR_MEMORY_REQUEST", "2Gi")
3839

0 commit comments

Comments
 (0)