Skip to content

Commit 4e687c2

Browse files
committed
Fixed holmes key
1 parent 4604336 commit 4e687c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-installation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
34+
python-version: ["3.9", "3.10", "3.11", "3.12"]
3535

3636
steps:
3737
- name: Set up Python ${{ matrix.python-version }}

robusta_cli/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class HelmValues(BaseModel, extra=Extra.allow):
8383
grafanaRenderer: Dict = None
8484
runner: Dict = None
8585
enableHolmesGPT: Optional[bool] = None
86-
holmesConfig: Optional[HolmesConfig] = None
86+
holmes: Optional[HolmesConfig] = None
8787

8888

8989
def get_slack_channel() -> str:
@@ -292,7 +292,7 @@ def gen_config(
292292

293293
if robusta_api_key:
294294
values.enableHolmesGPT = True
295-
values.holmesConfig = HolmesConfig(additional_env_vars=[
295+
values.holmes = HolmesConfig(additional_env_vars=[
296296
{
297297
"name": "ROBUSTA_AI",
298298
"value": "true"

0 commit comments

Comments
 (0)