mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16: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
10 lines
449 B
Bash
10 lines
449 B
Bash
#!/usr/bin/env bash
|
|
export KUBECONFIG=/Users/chrisfu/dev/prole/prole-k3s.kubeconfig
|
|
for pod in gitlab-webservice-default-675ccb7b99-9tkdh \
|
|
gitlab-webservice-default-675ccb7b99-j684x \
|
|
gitlab-sidekiq-all-in-1-v2-679848bc8-mrz9b; do
|
|
kubectl -n gitea delete pod "$pod" --force --grace-period=0 --ignore-not-found 2>/dev/null || true
|
|
done && \
|
|
sleep 20 && \
|
|
kubectl -n gitea get pods --no-headers | grep -E "webservice|sidekiq"
|