From 0dad6ddc8cea87e2db59b4bb2457887e91e0a440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Va=C5=A1ek?= Date: Thu, 16 Jan 2025 16:58:48 +0100 Subject: [PATCH] Remove usage of ttl.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matej VaĊĦek --- .github/workflows/test-e2e-oncluster.yaml | 1 + pkg/pipelines/tekton/gitlab_test.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-e2e-oncluster.yaml b/.github/workflows/test-e2e-oncluster.yaml index e88a8df94..d19cee724 100644 --- a/.github/workflows/test-e2e-oncluster.yaml +++ b/.github/workflows/test-e2e-oncluster.yaml @@ -30,6 +30,7 @@ jobs: - name: E2E On Cluster Test env: E2E_RUNTIMES: "" + E2E_REGISTRY_URL: registry.default.svc.cluster.local:5000 FUNC_REPO_REF: ${{ github.event.pull_request.head.repo.full_name }} FUNC_REPO_BRANCH_REF: ${{ github.head_ref }} run: make test-e2e-on-cluster diff --git a/pkg/pipelines/tekton/gitlab_test.go b/pkg/pipelines/tekton/gitlab_test.go index f53a1dc59..5da692903 100644 --- a/pkg/pipelines/tekton/gitlab_test.go +++ b/pkg/pipelines/tekton/gitlab_test.go @@ -67,7 +67,7 @@ func TestGitlab(t *testing.T) { ns := usingNamespace(t) t.Logf("testing in namespace: %q", ns) - funcImg := fmt.Sprintf("ttl.sh/func/fn-%s:5m", uuid.NewUUID()) + funcImg := fmt.Sprintf("registry.default.svc.cluster.local:5000/fn-%s", uuid.NewUUID()) f := fn.Function{ Root: projDir,