From 01182158260209444e8314b8721209fd9221a733 Mon Sep 17 00:00:00 2001 From: Feruzjon Muyassarov Date: Thu, 13 Oct 2022 16:06:09 +0300 Subject: [PATCH] Add ephemeral E2E test environment This patch adds a script to run E2E test on kind ephemeral cluster that gets deleted by the end of each test. Eventually, we will use this script on pull requests as a presubmit test. Signed-off-by: Feruzjon Muyassarov --- scripts/test-infra/test-e2e-presubmit.sh | 67 ++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100755 scripts/test-infra/test-e2e-presubmit.sh diff --git a/scripts/test-infra/test-e2e-presubmit.sh b/scripts/test-infra/test-e2e-presubmit.sh new file mode 100755 index 000000000..6905d148f --- /dev/null +++ b/scripts/test-infra/test-e2e-presubmit.sh @@ -0,0 +1,67 @@ +#!/bin/bash -e +set -o pipefail + +# Configure environment +KIND_IMAGE="kindest/node:v1.25.3" +export IMAGE_REGISTRY="localhost:5001" +export CLUSTER_NAME=$(git describe --tags --dirty --always) +export KUBECONFIG="/tmp/kubeconfig_$CLUSTER_NAME" + +# create registry container unless it already exists +reg_name='kind-registry' +reg_port='5001' +if [ "$(docker inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || true)" != 'true' ]; then + docker run \ + -d --restart=always -p "127.0.0.1:${reg_port}:5000" --name "${reg_name}" \ + registry:2 +fi + +# create a cluster with the local registry enabled in containerd +cat <