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

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"