Skip to content

Commit 4ac5871

Browse files
author
lijianguo
committed
chore(helmbroker): avoid naming conflicts with catalog
1 parent 2ae6b61 commit 4ac5871

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rootfs/helmbroker/tasks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def provision(instance_id: str, details: ProvisionDetails):
4141
"-f",
4242
values_file,
4343
"--set",
44-
f"fullnameOverride={details.context['instance_name']}"
44+
f"fullnameOverride=helmbroker-{details.context['instance_name']}"
4545
]
4646

4747
status, output = command("helm", *args)
@@ -88,7 +88,7 @@ def update(instance_id: str, details: UpdateDetails):
8888
"-f",
8989
values_file,
9090
"--set",
91-
f"fullnameOverride={details.context['instance_name']}"
91+
f"fullnameOverride=helmbroker-{details.context['instance_name']}"
9292
]
9393

9494
status, output = command("helm", *args)
@@ -126,7 +126,7 @@ def bind(instance_id: str,
126126
"-f",
127127
values_file,
128128
"--set",
129-
f"fullnameOverride={details.context['instance_name']}"
129+
f"fullnameOverride=helmbroker-{details.context['instance_name']}"
130130
]
131131
status, templates = command("helm", *args) # output: templates.yaml
132132
if status != 0:

0 commit comments

Comments
 (0)