- New stacks: beads-server, hermes-agent - Terragrunt tiers.tf for infra, phpipam, status-page - Secrets symlinks for vault, phpipam, hermes-agent - Scripts: cluster_manager, image_pull, containerd pullthrough setup - Frigate config, audiblez-web app source, n8n workflows dir - Claude agent: service-upgrade, reference: upgrade-config.json - Removed: claudeception skill, excalidraw empty submodule, temp listings [ci skip] Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
390 B
Bash
Executable file
10 lines
390 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for n in $(kubectl get nodes -o wide | grep node | awk '{print $1}'); do
|
|
echo $n;
|
|
kubectl drain $n --ignore-daemonsets --delete-emptydir-data && \
|
|
ssh wizard@$n < image_pull_remote.sh
|
|
# Check result
|
|
kubectl get --raw "/api/v1/nodes/$n/proxy/configz" | jq '.kubeletconfig | {serializeImagePulls, maxParallelImagePulls}'
|
|
kubectl uncordon $n
|
|
done
|