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 dbe125ee04.
This commit is contained in:
Navid Shaikh 2020-10-26 21:08:41 +05:30 committed by GitHub
parent 84eb376b8a
commit abb75e4da2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ if (( IS_PROW )); then
# Configure Docker so that we can create a secret for GCR # Configure Docker so that we can create a secret for GCR
gcloud auth configure-docker gcloud auth configure-docker
gcloud auth print-access-token | docker login -u oauth2accesstoken --password-stdin https://gcr.io 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 export DOCKER_CONFIG_JSON=/root/.docker/config.json
fi fi