mirror of
https://github.com/biersoeckli/QuickStack.git
synced 2026-02-09 21:19:07 -06:00
84 lines
3.4 KiB
Bash
84 lines
3.4 KiB
Bash
#!/bin/bash
|
|
|
|
# curl -sfL https://get.quickstack.dev/setup-worker.sh | K3S_URL=<https://IP-ADDRESS-OR-HOSTNAME-OF-MASTERNODE:6443> JOIN_TOKEN=<TOKEN> sh -
|
|
|
|
if [ -z "${K3S_URL}" ]; then
|
|
echo "Error: Missing parameter 'K3S_URL'."
|
|
echo "Example K3S_URL https://<IP-ADDRESS-OR-HOSTNAME-OF-MASTERNODE>:6443"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "${JOIN_TOKEN}" ]; then
|
|
echo "Error: Missing parameter 'JOIN_TOKEN'."
|
|
exit 1
|
|
fi
|
|
|
|
k3sUrl="$1"
|
|
joinToken="$2"
|
|
|
|
select_network_interface() {
|
|
if [ -z "$INSTALL_K3S_INTERFACE" ]; then
|
|
interfaces_with_ips=$(ip -o -4 addr show | awk '!/^[0-9]*: lo:/ {print $2, $4}' | cut -d'/' -f1)
|
|
|
|
echo "Available network interfaces:"
|
|
echo "$interfaces_with_ips"
|
|
echo ""
|
|
echo "*******************************************************************************************************"
|
|
echo ""
|
|
echo "Please select the ip address wich is in the same network as the master node."
|
|
echo "If you havent configured a private network between the nodes, select the public ip address."
|
|
echo ""
|
|
|
|
i=1
|
|
echo "$interfaces_with_ips" | while read -r iface ip; do
|
|
printf "%d) %s (%s)\n" "$i" "$iface" "$ip"
|
|
i=$((i + 1))
|
|
done
|
|
|
|
printf "Please enter the number of the interface to use: "
|
|
# Change read to use /dev/tty explicitly
|
|
read -r choice </dev/tty
|
|
|
|
selected=$(echo "$interfaces_with_ips" | sed -n "${choice}p")
|
|
selected_iface=$(echo "$selected" | awk '{print $1}')
|
|
selected_ip=$(echo "$selected" | awk '{print $2}')
|
|
|
|
if [ -n "$selected" ]; then
|
|
echo "Selected interface: $selected_iface ($selected_ip)"
|
|
else
|
|
echo "Invalid selection. Exiting."
|
|
exit 1
|
|
fi
|
|
else
|
|
selected_iface="$INSTALL_K3S_INTERFACE"
|
|
selected_ip=$(ip -o -4 addr show "$selected_iface" | awk '{print $4}' | cut -d'/' -f1)
|
|
echo "Using provided network interface: $selected_iface ($selected_ip)"
|
|
fi
|
|
|
|
echo "Using network interface: $selected_iface with IP address: $selected_ip"
|
|
}
|
|
|
|
# Call the function to select the network interface
|
|
select_network_interface
|
|
|
|
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
# THIS MUST BE INSTALLED ON ALL NODES --> https://longhorn.io/docs/1.7.2/deploy/install/#installing-nfsv4-client
|
|
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
# install nfs-common and open-iscsi
|
|
sudo apt-get update
|
|
sudo apt-get install open-iscsi nfs-common -y
|
|
|
|
# Disable portmapper services --> https://github.com/biersoeckli/QuickStack/issues/18
|
|
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"
|
|
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--flannel-iface=$selected_iface" INSTALL_K3S_VERSION="v1.31.3+k3s1" K3S_URL=${K3S_URL} K3S_TOKEN=${JOIN_TOKEN} sh -
|
|
|
|
echo ""
|
|
echo "-----------------------------------------------------------------------------------------------------------"
|
|
echo "* Node Setup completed. It might take a few minutes until the node is visible in the QuickStack settings. *"
|
|
echo "-----------------------------------------------------------------------------------------------------------"
|
|
echo ""
|