#!/bin/bash # Show what's running on the shared `spr` cluster. set -e if ! kind get clusters 2>/dev/null | grep -q '^spr$'; then echo "No 'spr' kind cluster — run ctrl/kind-up.sh" exit 0 fi kubectl --context kind-spr get namespaces -l soleprint-room echo kubectl --context kind-spr get pods -A -l soleprint-room