mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Run load test against nodes deployed to a kind cluster
|
|
|
|
if ! [[ "$0" =~ scripts/tests.load.kube.kind.sh ]]; then
|
|
echo "must be run from repository root"
|
|
exit 255
|
|
fi
|
|
|
|
# This script will use kubeconfig arguments if supplied
|
|
./scripts/start_kind_cluster.sh "$@"
|
|
|
|
# Build Lux Node image
|
|
LUXD_IMAGE="localhost:5001/node"
|
|
if [[ -n "${SKIP_BUILD_IMAGE:-}" ]]; then
|
|
echo "Skipping build of node image due to SKIP_BUILD_IMAGE=${SKIP_BUILD_IMAGE}"
|
|
else
|
|
DOCKER_IMAGE="$LUXD_IMAGE" FORCE_TAG_LATEST=1 ./scripts/build_image.sh
|
|
fi
|
|
|
|
# Determine kubeconfig context to use
|
|
KUBECONFIG_CONTEXT=""
|
|
|
|
# Check if --kubeconfig-context is already provided in arguments
|
|
if [[ "$*" =~ --kubeconfig-context ]]; then
|
|
# User provided a context, use it as-is
|
|
echo "Using provided kubeconfig context from arguments"
|
|
else
|
|
# Default to the RBAC context
|
|
KUBECONFIG_CONTEXT="--kubeconfig-context=kind-kind-tmpnet"
|
|
echo "Defaulting to limited-permission context 'kind-kind-tmpnet' to test RBAC Role permissions"
|
|
fi
|
|
|
|
go run ./tests/load/c/main --runtime=kube --kube-image="$LUXD_IMAGE" "$KUBECONFIG_CONTEXT" "$@"
|