Skip to content

Commit fd15d1e

Browse files
claudejhrozek
authored andcommitted
Fix duplicate VMCP_IMAGE env var in e2e lifecycle workflow
The test-e2e-lifecycle.yml workflow was setting VMCP_IMAGE via operator.env[0], but PR 2802 added a dedicated operator.vmcpImage value that gets rendered directly in the deployment template. This caused duplicate VMCP_IMAGE entries in the env array. Update the workflow to use the new operator.vmcpImage helm value instead of the generic operator.env mechanism.
1 parent b32f9f7 commit fd15d1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/test-e2e-lifecycle.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ jobs:
102102
helm upgrade --install toolhive-operator deploy/charts/operator \
103103
--set operator.image=${OPERATOR_IMAGE} \
104104
--set operator.toolhiveRunnerImage=${TOOLHIVE_IMAGE} \
105-
--set-string 'operator.env[0].name=VMCP_IMAGE' \
106-
--set-string "operator.env[0].value=${{ env.VMCP_IMAGE }}" \
105+
--set operator.vmcpImage=${{ env.VMCP_IMAGE }} \
107106
--namespace toolhive-system \
108107
--create-namespace \
109108
--kubeconfig kconfig.yaml

0 commit comments

Comments
 (0)