mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-04 09:02:09 +01:00
75fd17aac8
1. Now does not remove prerequisite packages, lvm2 was included in these packages (not good when you use LVM2 for real). 2. Added a bit more idempotency to the shell scripts - only delete if it exists. 3. Check that the process isn't running and binaries are gone.
79 lines
1.7 KiB
Django/Jinja
79 lines
1.7 KiB
Django/Jinja
#!/bin/sh
|
|
|
|
[ $(id -u) -eq 0 ] || exec sudo $0 $@
|
|
|
|
for bin in /var/lib/rancher/k3s/data/**/bin/; do
|
|
[ -d "$bin" ] && export PATH=$bin:$PATH
|
|
done
|
|
|
|
set -x
|
|
|
|
for service in /etc/systemd/system/k3s*.service; do
|
|
[ -s "$service" ] && systemctl stop "$(basename $service)"
|
|
done
|
|
|
|
for service in /etc/init.d/k3s*; do
|
|
[ -x "$service" ] && "$service" stop
|
|
done
|
|
|
|
pschildren() {
|
|
ps -e -o ppid= -o pid= | \
|
|
sed -e 's/^\s*//g; s/\s\s*/\t/g;' | \
|
|
grep -w "^$1" | \
|
|
cut -f2
|
|
}
|
|
|
|
pstree() {
|
|
for pid in $@; do
|
|
echo $pid
|
|
for child in $(pschildren $pid); do
|
|
pstree $child
|
|
done
|
|
done
|
|
}
|
|
|
|
killtree() {
|
|
kill -9 $(
|
|
{ set +x; } 2>/dev/null;
|
|
pstree $@;
|
|
set -x;
|
|
) 2>/dev/null
|
|
}
|
|
|
|
getshims() {
|
|
lsof | sed -e 's/^[^0-9]*//g; s/ */\t/g' | grep -w 'k3s/data/[^/]*/bin/containerd-shim' | cut -f1 | sort -n -u
|
|
}
|
|
|
|
killtree $({ set +x; } 2>/dev/null; getshims; set -x)
|
|
|
|
do_unmount() {
|
|
{ set +x; } 2>/dev/null
|
|
MOUNTS=
|
|
while read ignore mount ignore; do
|
|
MOUNTS="$mount\n$MOUNTS"
|
|
done </proc/self/mounts
|
|
MOUNTS=$(printf $MOUNTS | grep "^$1" | sort -r)
|
|
if [ -n "${MOUNTS}" ]; then
|
|
set -x
|
|
umount ${MOUNTS}
|
|
else
|
|
set -x
|
|
fi
|
|
}
|
|
|
|
do_unmount '/run/k3s'
|
|
do_unmount '/var/lib/rancher/k3s'
|
|
do_unmount '/var/lib/kubelet/pods'
|
|
do_unmount '/run/netns/cni-'
|
|
|
|
# Delete network interface(s) that match 'master cni0'
|
|
ip link show 2>/dev/null | grep 'master cni0' | while read ignore iface ignore; do
|
|
iface=${iface%%@*}
|
|
[ -z "$iface" ] || ip link delete $iface
|
|
done
|
|
|
|
ip link delete cni0
|
|
ip link delete flannel.1
|
|
[ -d /var/lib/cni ] && rm -rf /var/lib/cni/
|
|
iptables-save | grep -v KUBE- | grep -v CNI- | iptables-restore
|