mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
15 lines
467 B
Bash
15 lines
467 B
Bash
#!/usr/bin/env bash
|
|
export KUBECONFIG=/Users/chrisfu/dev/knoe/knoe-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/knoe/logs/install_run9.log 2>&1
|