From 840cfe6325d40515d77f9dbefafad8375fb29418 Mon Sep 17 00:00:00 2001 From: Chris Burns <29541485+ChrisJBurns@users.noreply.github.com> Date: Tue, 7 Apr 2026 12:30:54 +0100 Subject: [PATCH] Fix CI extraVolumes test using wrong value keys The CI test file used operator.extraVolumeMounts and operator.extraVolumes, but the deployment template reads operator.volumeMounts and operator.volumes. This mismatch meant the CI test silently passed without actually exercising volume injection. Rename the keys to match what the template expects. Co-Authored-By: Claude Opus 4.6 (1M context) --- deploy/charts/operator/ci/extraVolumes-values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/charts/operator/ci/extraVolumes-values.yaml b/deploy/charts/operator/ci/extraVolumes-values.yaml index 367ed2080d..560a8d2c78 100644 --- a/deploy/charts/operator/ci/extraVolumes-values.yaml +++ b/deploy/charts/operator/ci/extraVolumes-values.yaml @@ -2,11 +2,11 @@ operator: image: ko.local/thv-operator:ci-test toolhiveRunnerImage: ko.local/thv-proxyrunner:ci-test vmcpImage: ko.local/vmcp:ci-test - extraVolumeMounts: + volumeMounts: - name: test mountPath: /somepath readOnly: true - extraVolumes: + volumes: - name: test emptyDir: sizeLimit: 5Mi