Skip to content

Commit

Permalink
remove pod-manifests dir in killall script
Browse files Browse the repository at this point in the history
Signed-off-by: galal-hussein <[email protected]>
  • Loading branch information
galal-hussein committed Oct 19, 2023
1 parent 8121f02 commit ace4c03
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion bundle/bin/rke2-killall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,16 @@ if [ -d /sys/class/net/nodelocaldns ]; then
fi

rm -rf /var/lib/cni/ /var/log/pods/ /var/log/containers
grep -rl "tier: control-plane" /var/lib/rancher/rke2/agent/pod-manifests/ | while read MANIFEST; do rm -f $MANIFEST; done

# Remove pod-manifests files for rke2 components
POD_MANIFESTS_DIR=/var/lib/rancher/rke2/agent/pod-manifests

rm -f ${POD_MANIFESTS_DIR}/etcd.yaml \
${POD_MANIFESTS_DIR}/kube-apiserver.yaml \
${POD_MANIFESTS_DIR}/kube-controller-manager.yaml \
${POD_MANIFESTS_DIR}/cloud-controller-manager.yaml\
${POD_MANIFESTS_DIR}/kube-scheduler.yaml \
${POD_MANIFESTS_DIR}/kube-proxy.yaml

# Delete iptables created by CNI plugins or Kubernetes (kube-proxy)
iptables-save | grep -v KUBE- | grep -v CNI- | grep -v cali- | grep -v cali: | grep -v CILIUM_ | grep -v flannel | iptables-restore
Expand Down

0 comments on commit ace4c03

Please sign in to comment.