prole/tmp/status_check.sh
chrisfu b4fc5641db checkpoint: sanitize prole config for host portability
- fix conf/prod/prole.cfg by replacing hardcoded /Users/chrisfu paths with /Users/chrisfu

- remove injected [update.sh] log lines and stray password artifacts so config is executable

- include latest pending updates across deployment config, UI/core flow, vault/network artifacts, and helper scripts
2026-04-10 05:58:40 -07:00

15 lines
470 B
Bash

#!/usr/bin/env bash
export KUBECONFIG=/Users/chrisfu/dev/prole/prole-k3s.kubeconfig
echo "==> minio-init logs:"
kubectl -n gitea logs minio-init 2>&1 | tail -15 || true
echo "==> GitLab pods:"
kubectl -n gitea get pods --no-headers | grep -v jemalloc-builder | sort
echo "==> GitLab CR phase:"
kubectl -n gitea get gitlab gitlab -o jsonpath='{.status.phase}' 2>&1 && echo
echo "==> Installer run 9 tail:"
tail -10 /Users/chrisfu/dev/prole/logs/install_run9.log 2>&1