Files
kubesolo-os/test/integration/test-deploy-workload.sh
Adolfo Delorenzo 4fc078f7a3
Some checks failed
CI / Go Tests (push) Has been cancelled
CI / Build Go Binaries (amd64, linux, linux-amd64) (push) Has been cancelled
CI / Build Go Binaries (arm64, linux, linux-arm64) (push) Has been cancelled
CI / Shellcheck (push) Has been cancelled
fix: kubeconfig server accessible via port forwarding, integration tests use proper auth
Bind kubeconfig HTTP server to 0.0.0.0:8080 (was 127.0.0.1) so integration
tests can reach it via QEMU SLIRP port forwarding. Add shared wait_for_boot
and fetch_kubeconfig helpers to qemu-helpers.sh. Update all 5 integration
tests to fetch kubeconfig via HTTP and use it for kubectl authentication.

All 6 tests pass on Linux with KVM: boot (18s), security (7/7), K8s ready
(15s), workload deploy, local storage, network policy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 15:25:32 -06:00

124 lines
3.5 KiB
Bash
Executable File

#!/bin/bash
# test-deploy-workload.sh — Deploy a test workload and verify it reaches Running
# Usage: ./test/integration/test-deploy-workload.sh <iso-path>
# Requires: kubectl on host, QEMU
set -euo pipefail
ISO="${1:?Usage: $0 <path-to-iso>}"
TIMEOUT_K8S=${TIMEOUT_K8S:-300}
TIMEOUT_POD=${TIMEOUT_POD:-120}
API_PORT=6443
KC_PORT=8080
SERIAL_LOG=$(mktemp /tmp/kubesolo-workload-XXXXXX.log)
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
. "$SCRIPT_DIR/../lib/qemu-helpers.sh"
DATA_DISK=$(mktemp /tmp/kubesolo-data-XXXXXX.img)
dd if=/dev/zero of="$DATA_DISK" bs=1M count=2048 2>/dev/null
mkfs.ext4 -q -L KSOLODATA "$DATA_DISK" 2>/dev/null
QEMU_PID=""
EXTRACT_DIR=""
KUBECONFIG_FILE=""
cleanup() {
[ -n "$QEMU_PID" ] && kill "$QEMU_PID" 2>/dev/null || true
rm -f "$DATA_DISK" "$SERIAL_LOG"
[ -n "$KUBECONFIG_FILE" ] && rm -f "$KUBECONFIG_FILE"
[ -n "$EXTRACT_DIR" ] && rm -rf "$EXTRACT_DIR"
}
trap cleanup EXIT
echo "==> Workload deployment test: $ISO"
# Extract kernel from ISO
EXTRACT_DIR="$(mktemp -d /tmp/kubesolo-extract-XXXXXX)"
extract_kernel_from_iso "$ISO" "$EXTRACT_DIR"
KVM_FLAG=$(detect_kvm)
# Launch QEMU
# shellcheck disable=SC2086
qemu-system-x86_64 \
-m 2048 -smp 2 \
-nographic \
$KVM_FLAG \
-kernel "$VMLINUZ" \
-initrd "$INITRAMFS" \
-drive "file=$DATA_DISK,format=raw,if=virtio" \
-net "nic,model=virtio" \
-net "user,hostfwd=tcp::${API_PORT}-:6443,hostfwd=tcp::${KC_PORT}-:8080" \
-serial "file:$SERIAL_LOG" \
-append "console=ttyS0,115200n8 kubesolo.data=/dev/vda kubesolo.debug" \
&
QEMU_PID=$!
# Wait for boot + fetch kubeconfig
echo " Waiting for boot..."
wait_for_boot "$SERIAL_LOG" "$QEMU_PID" 180 || exit 1
KUBECONFIG_FILE=$(mktemp /tmp/kubesolo-kubeconfig-XXXXXX.yaml)
fetch_kubeconfig "$KC_PORT" "$KUBECONFIG_FILE" || exit 1
KUBECTL="kubectl --kubeconfig=$KUBECONFIG_FILE --insecure-skip-tls-verify"
# Wait for K8s API
echo " Waiting for K8s node Ready..."
ELAPSED=0
K8S_READY=0
while [ "$ELAPSED" -lt "$TIMEOUT_K8S" ]; do
if $KUBECTL get nodes 2>/dev/null | grep -q "Ready"; then
K8S_READY=1
break
fi
sleep 5
ELAPSED=$((ELAPSED + 5))
printf "\r Elapsed: %ds / %ds" "$ELAPSED" "$TIMEOUT_K8S"
done
echo ""
if [ "$K8S_READY" != "1" ]; then
echo "==> FAIL: K8s node did not reach Ready within ${TIMEOUT_K8S}s"
exit 1
fi
echo "==> K8s node Ready (${ELAPSED}s)"
# Deploy test workload
echo "==> Deploying test nginx pod..."
$KUBECTL run test-nginx --image=nginx:alpine --restart=Never 2>/dev/null || {
echo "==> FAIL: Could not create test pod"
exit 1
}
# Wait for pod to be Running
echo " Waiting for pod to reach Running..."
ELAPSED=0
POD_RUNNING=0
STATUS=""
while [ "$ELAPSED" -lt "$TIMEOUT_POD" ]; do
STATUS=$($KUBECTL get pod test-nginx -o jsonpath='{.status.phase}' 2>/dev/null || echo "")
if [ "$STATUS" = "Running" ]; then
POD_RUNNING=1
break
fi
sleep 5
ELAPSED=$((ELAPSED + 5))
printf "\r Elapsed: %ds / %ds (status: %s)" "$ELAPSED" "$TIMEOUT_POD" "${STATUS:-pending}"
done
echo ""
# Cleanup test pod
$KUBECTL delete pod test-nginx --grace-period=0 --force 2>/dev/null || true
if [ "$POD_RUNNING" = "1" ]; then
echo "==> PASS: Test pod reached Running state (${ELAPSED}s)"
exit 0
else
echo "==> FAIL: Test pod did not reach Running within ${TIMEOUT_POD}s (last status: $STATUS)"
echo " Pod events:"
$KUBECTL describe pod test-nginx 2>/dev/null | tail -20 || true
exit 1
fi