From 58c6e63cb7e850845e24afcdc69d7755046e5a42 Mon Sep 17 00:00:00 2001 From: Travis Raines <571832+rainest@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:23:27 -0700 Subject: [PATCH] chore(ci) remove duplicate install block --- scripts/test-run.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/scripts/test-run.sh b/scripts/test-run.sh index 7826f4ec1..16debf702 100755 --- a/scripts/test-run.sh +++ b/scripts/test-run.sh @@ -126,38 +126,6 @@ metadata: fi -TAG_MESSAGE="" -if [[ "${TAG}" != "default" ]] -then - TAG_MESSAGE="with controller tag ${TAG} " - ADDITIONAL_FLAGS+=("--set ingressController.deployment.pod.container.image.tag=${TAG} "); -fi - -# Configure values for all tests -# Enable Gateway API -ADDITIONAL_FLAGS+=("--set ingressController.deployment.pod.container.env.feature_gates=GatewayAlpha=true") -# Tests should not show up in reporting -ADDITIONAL_FLAGS+=("--set ingressController.deployment.pod.container.env.anonymous_reports=false") - -if [[ -n "${KONG_VERSION-}" ]] -then -ADDITIONAL_FLAGS+=("--set image.tag=${KONG_VERSION}") -fi - -if [[ -n "${KIC_VERSION-}" ]] -then -ADDITIONAL_FLAGS+=("--set ingressController.deployment.pod.container.image.tag=${KIC_VERSION}") -fi - -echo "INFO: installing chart as release ${RELEASE_NAME} ${TAG_MESSAGE}to namespace ${RELEASE_NAMESPACE}" -set -x -# shellcheck disable=SC2048,SC2086 -helm install --namespace "${RELEASE_NAMESPACE}" "${RELEASE_NAME}" \ - --set deployment.test.enabled=true \ - ${ADDITIONAL_FLAGS[*]} \ - "charts/${CHART_NAME}" -set +x - # ------------------------------------------------------------------------------ # Test Chart # ------------------------------------------------------------------------------