prole/tmp/run8.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

19 lines
587 B
Bash

#!/usr/bin/env bash
export KUBECONFIG=/Users/chrisfu/dev/prole/prole-k3s.kubeconfig
echo "==> CNPG cluster status:"
kubectl -n knoe-db get cluster knoe-db -o jsonpath='{.status.phase}' 2>&1 && echo
echo "==> CNPG pods:"
kubectl -n knoe-db get pods --no-headers 2>&1
echo "==> Removing stale PID lock..."
rm -f /Users/chrisfu/dev/prole/install.pid
echo "==> Launching installer run 8..."
cd /Users/chrisfu/dev/prole
mkdir -p logs
nohup bash install.sh --silent -c conf/service/prole.cfg > logs/install_run8.log 2>&1 &
disown
echo "Installer started, logging to logs/install_run8.log"