mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 18:44:33 +00:00
- 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
11 lines
628 B
Bash
11 lines
628 B
Bash
#!/usr/bin/env bash
|
|
export KUBECONFIG=/Users/chrisfu/dev/prole/prole-k3s.kubeconfig
|
|
echo "==> Webservice puma latest (kgqhl):" && \
|
|
kubectl -n gitea logs gitlab-webservice-default-675ccb7b99-kgqhl -c webservice --tail=6 2>&1 | grep -v LD_PRELOAD | head -6
|
|
echo "==> Sidekiq latest:" && \
|
|
kubectl -n gitea logs gitlab-sidekiq-all-in-1-v2-679848bc8-wvxln --tail=6 2>&1 | grep -v LD_PRELOAD | head -6
|
|
echo "==> Pod readiness:" && \
|
|
kubectl -n gitea get pods --no-headers | grep -E "webservice|sidekiq" | awk '{print $1,$2,$3}'
|
|
echo "==> CR phase:" && \
|
|
kubectl -n gitea get gitlab gitlab -o jsonpath='{.status.phase}' 2>&1 && echo
|