fix: use sudo for kubectl commands in setup scripts to ensure proper permissions

This commit is contained in:
biersoeckli
2025-10-19 16:01:28 +02:00
parent 64ebfb5fbe
commit 5a9993fc4f
4 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ sudo apt-get update
sudo apt-get install open-iscsi nfs-common -y
# Disable portmapper services --> https://github.com/biersoeckli/QuickStack/issues/18
systemctl stop rpcbind.service rpcbind.socket
systemctl disable rpcbind.service rpcbind.socket
sudo systemctl stop rpcbind.service rpcbind.socket
sudo systemctl disable rpcbind.service rpcbind.socket
# Installation of k3s
echo "Installing k3s with --flannel-iface=$selected_iface"