From e6bddcd238ff3b73fd9e4237fb91cf5d388e3399 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Thu, 12 May 2022 09:19:47 +0900 Subject: [PATCH] Fix certain runnerset name in E2E and acceptance (#1435) --- acceptance/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/deploy.sh b/acceptance/deploy.sh index 9199c504..fea6002f 100755 --- a/acceptance/deploy.sh +++ b/acceptance/deploy.sh @@ -99,7 +99,7 @@ if [ -n "${TEST_ORG}" ]; then if [ -n "${TEST_ORG_GROUP}" ]; then if [ "${USE_RUNNERSET}" != "false" ]; then - cat acceptance/testdata/runnerset.envsubst.yaml | TEST_ENTERPRISE= TEST_REPO= RUNNER_MIN_REPLICAS=${ORG_RUNNER_MIN_REPLICAS} TEST_GROUP=${TEST_ORG_GROUP} NAME=orgroupg-runnerset envsubst | kubectl apply -f - + cat acceptance/testdata/runnerset.envsubst.yaml | TEST_ENTERPRISE= TEST_REPO= RUNNER_MIN_REPLICAS=${ORG_RUNNER_MIN_REPLICAS} TEST_GROUP=${TEST_ORG_GROUP} NAME=orggroup-runnerset envsubst | kubectl apply -f - else cat acceptance/testdata/runnerdeploy.envsubst.yaml | TEST_ENTERPRISE= TEST_REPO= RUNNER_MIN_REPLICAS=${ORG_RUNNER_MIN_REPLICAS} TEST_GROUP=${TEST_ORG_GROUP} NAME=orggroup-runnerdeploy envsubst | kubectl apply -f - fi