From abb75e4da2c45534593bb2684dc3253eef3a7d91 Mon Sep 17 00:00:00 2001 From: Navid Shaikh Date: Mon, 26 Oct 2020 21:08:41 +0530 Subject: [PATCH] fix(tekton e2e): Fix CONTAINER_REGISTRY name generation (#1074) * fix(tekton e2e): Fix CONTAINER_REGISTRY name generation var `E2E_BASE_NAME` is no longer available * debug: Run tekton tests * Revert "debug: Run tekton tests" This reverts commit dbe125ee048c3c3564190cd265cb18ffb832d040. --- test/tekton-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tekton-tests.sh b/test/tekton-tests.sh index e0418a83e3..3d91d45e56 100755 --- a/test/tekton-tests.sh +++ b/test/tekton-tests.sh @@ -44,7 +44,7 @@ if (( IS_PROW )); then # Configure Docker so that we can create a secret for GCR gcloud auth configure-docker gcloud auth print-access-token | docker login -u oauth2accesstoken --password-stdin https://gcr.io - export CONTAINER_REGISTRY=gcr.io/${E2E_PROJECT_ID}/${E2E_BASE_NAME}-e2e-img/${RANDOM} + export CONTAINER_REGISTRY=gcr.io/${E2E_PROJECT_ID}/kn-tekton-e2e-img/${RANDOM} export DOCKER_CONFIG_JSON=/root/.docker/config.json fi