mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 18:54:32 +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
19 lines
587 B
Bash
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"
|