#!/usr/bin/env bash set -euo pipefail if [[ $# -lt 1 ]]; then echo "Usage: $0 " exit 1 fi # Allow toggling verbose output [[ -n ${VERBOSE:-} ]] && set -x LOADTEST_NAME="$1" CODER_TOKEN=$(./coder_shim.sh tokens create) CODER_URL="http://coder.coder-${LOADTEST_NAME}.svc.cluster.local" export KUBECONFIG="${PWD}/.coderv2/${LOADTEST_NAME}-cluster.kubeconfig" cat <