Initial commit

This commit is contained in:
Scooby Husky
2026-03-09 20:21:35 -05:00
commit aacb8eebbe
314 changed files with 21766 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Post-sync fix for scylla-manager: the chart-created NetworkPolicy
# blocks cross-node ClusterIP traffic due to a CNI/kube-proxy DNAT
# interaction. Delete it so the manager API can reach its backend
# ScyllaCluster via the per-pod service from any node.
set -euo pipefail
NS=scylla-manager
echo "Removing NetworkPolicy that blocks cross-node ClusterIP traffic..."
kubectl -n "${NS}" delete networkpolicy scylla-manager-to-scylla-pod --ignore-not-found=true