From 21d166d1eebb3aaec9637af0df1f7338c1fec1f6 Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Tue, 21 Jul 2026 14:18:30 +0200 Subject: [PATCH] fix(ncp-local-cluster): drop stale local.yaml check from dry tests test-multicluster-make failed on main because it grepped deploy/stacks/self-managed/environments/local.yaml, a file that has never existed in this repo. Environment files other than base.yaml are created by users per the local development docs. Remove the stale check so the dry tests pass again. Closes #307 Signed-off-by: mesutoezdil --- tools/ncp-local-cluster/tests/test-multicluster-make.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/ncp-local-cluster/tests/test-multicluster-make.sh b/tools/ncp-local-cluster/tests/test-multicluster-make.sh index e6973b600..6cb014b89 100755 --- a/tools/ncp-local-cluster/tests/test-multicluster-make.sh +++ b/tools/ncp-local-cluster/tests/test-multicluster-make.sh @@ -143,10 +143,6 @@ fi if ! grep -q '10081:10081' "$ROOT_DIR/k3d-config.yaml"; then fail "single-cluster k3d config must expose the stack-owned grpc-gw TCP listener on host port 10081" fi -if ! grep -q 'invocationServiceURL: http://invocation.nvcf.svc.cluster.local:8080' "$ROOT_DIR/../../deploy/stacks/self-managed/environments/local.yaml"; then - fail "local stack values must advertise the invocation service DNS worker endpoint" -fi - if ! grep -q 'service-nvct-api.yaml' "$ROOT_DIR/apps/compute-control-plane-endpoints/kustomization.yaml"; then fail "compute control-plane endpoint aliases must include the NVCT API Service" fi