#!/bin/bash -e # Configure environment export KIND_VERSION="v0.23.0" export KIND_NODE_IMAGE="kindest/node:v1.30.2" export CLUSTER_NAME="nfd-e2e" export KUBECONFIG=`pwd`/kubeconfig export IMAGE_REGISTRY="gcr.io/k8s-staging-nfd" export E2E_TEST_FULL_IMAGE=true # Install kind go install sigs.k8s.io/kind@$KIND_VERSION # create a cluster with the local registry enabled in containerd cat <