JimsGarage/Kubernetes/Longhorn/longhorn-K3S.sh

79 lines
2.9 KiB
Bash
Raw Normal View History

2023-10-18 11:52:42 +01:00
#!/bin/bash
2023-10-18 15:13:34 +01:00
echo -e " \033[33;2m __ _ _ ___ \033[0m"
echo -e " \033[33;2m \ \(_)_ __ ___( )__ / _ \__ _ _ __ __ _ __ _ ___ \033[0m"
echo -e " \033[33;2m \ \ | '_ \` _ \/ __| / /_\/ _\` | '__/ _\` |/ _\` |/ _ \ \033[0m"
echo -e " \033[33;2m /\_/ / | | | | | \__ \ / /_\\ (_| | | | (_| | (_| | __/ \033[0m"
echo -e " \033[33;2m \___/|_|_| |_| |_|___/ \____/\__,_|_| \__,_|\__, |\___| \033[0m"
echo -e " \033[33;2m |___/ \033[0m"
echo -e " \033[35;2m __ _ \033[0m"
echo -e " \033[35;2m / / ___ _ __ __ _| |__ ___ _ __ _ __ \033[0m"
echo -e " \033[35;2m / / / _ \| '_ \ / _\` | '_ \ / _ \| '__| '_ \ \033[0m"
echo -e " \033[35;2m / /__| (_) | | | | (_| | | | | (_) | | | | | | \033[0m"
echo -e " \033[35;2m \____/\___/|_| |_|\__, |_| |_|\___/|_| |_| |_| \033[0m"
echo -e " \033[35;2m |___/ \033[0m"
echo -e " \033[36;2m \033[0m"
echo -e " \033[32;2m https://youtube.com/@jims-garage \033[0m"
echo -e " \033[32;2m \033[0m"
2023-10-18 11:52:42 +01:00
#############################################
# YOU SHOULD ONLY NEED TO EDIT THIS SECTION #
#############################################
# Set the IP addresses of master1
master1=192.168.3.21
# Set the IP addresses of your Longhorn nodes
longhorn1=192.168.3.26
longhorn2=192.168.3.27
longhorn3=192.168.3.28
# User of remote machines
user=ubuntu
# Interface used on remotes
interface=eth0
# Set the virtual IP address (VIP)
vip=192.168.3.50
# Array of longhorn nodes
storage=($longhorn1 $longhorn2 $longhorn3)
#############################################
# DO NOT EDIT BELOW #
#############################################
# For testing purposes - in case time is wrong due to VM snapshots
sudo timedatectl set-ntp off
sudo timedatectl set-ntp on
2023-11-01 12:43:40 +00:00
#add ssh keys for all nodes
for node in "${storage[@]}"; do
ssh-copy-id $user@$node
done
2023-10-18 11:52:42 +01:00
# Step 1: Add new longhorn nodes to cluster (note: label added)
for newnode in "${storage[@]}"; do
k3sup join \
2023-10-18 13:44:11 +01:00
--ip $newnode \
2023-10-18 11:52:42 +01:00
--user $user \
--sudo \
--k3s-channel stable \
--server-ip $master1 \
2023-11-01 11:55:19 +00:00
--k3s-extra-args "--node-label \"longhorn=true\"" \
2023-10-18 11:52:42 +01:00
--ssh-key $HOME/.ssh/id_rsa
echo -e " \033[32;5mAgent node joined successfully!\033[0m"
done
# Step 2: Install Longhorn (using modified Official to pin to Longhorn Nodes)
2023-10-18 14:15:11 +01:00
kubectl apply -f https://raw.githubusercontent.com/JamesTurland/JimsGarage/main/Kubernetes/Longhorn/longhorn.yaml
2023-10-18 11:52:42 +01:00
kubectl get pods \
--namespace longhorn-system \
--watch
2023-10-18 15:07:00 +01:00
# Step 3: Print out confirmation
2023-10-18 11:52:42 +01:00
kubectl get nodes
2023-10-18 13:44:11 +01:00
kubectl get svc -n longhorn-system
2023-10-18 11:52:42 +01:00
2023-10-18 15:07:00 +01:00
echo -e " \033[32;5mHappy Kubing! Access Longhorn through Rancher UI\033[0m"