mirror of
https://gitlab.kube.huskypup.net/Scooby/Homelabv4.git
synced 2026-08-21 05:26:49 +00:00
Initial commit
This commit is contained in:
+11
@@ -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
|
||||
Reference in New Issue
Block a user