fix: check-status.py pod label selector matches actual k8s labels

The pod label is app=laconic-70ce4c4b47e23b85, not
app=laconic-70ce4c4b47e23b85-deployment.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fix/kind-mount-propagation
A. F. Dudley 2026-03-09 06:46:17 +00:00
parent 09728a719c
commit ed6f6bfd59
1 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@ SSH_HOST = "biscayne.vaasl.io"
KUBECONFIG = "/home/rix/.kube/config"
NAMESPACE = "laconic-laconic-70ce4c4b47e23b85"
DEPLOYMENT = "laconic-70ce4c4b47e23b85-deployment"
POD_LABEL = "laconic-70ce4c4b47e23b85"
KIND_CONTAINER = "laconic-70ce4c4b47e23b85-control-plane"
SNAPSHOT_DIR = "/srv/kind/solana/snapshots"
RAMDISK = "/srv/kind/solana/ramdisk"
@ -76,7 +77,7 @@ def get_mainnet_slot() -> int | None:
def check_pod() -> dict:
"""Get pod phase and container statuses."""
rc, out = kubectl(
f"get pods -n {NAMESPACE} -l app={DEPLOYMENT} "
f"get pods -n {NAMESPACE} -l app={POD_LABEL} "
"-o json"
)
if rc != 0 or not out: