infctl-cli/scripts/configure_vagrant_k3s.sh
2025-08-06 08:39:26 +01:00

175 lines
No EOL
5.2 KiB
Bash
Executable file

#!/usr/bin/env bash
# This script checks for Vagrant and VirtualBox prerequisites, ensures Vagrant VMs are running, and gathers network and system information from the VMs.
echo "Checking Vagrant prerequisites..."
# Check if Vagrant is installed
if ! command -v vagrant &> /dev/null; then
echo "Vagrant is not installed. Please install Vagrant to proceed."
exit 1
fi
# Check if running on Windows
if [[ "$(uname -s)" == *"MINGW"* || "$(uname -s)" == *"CYGWIN"* || "$OSTYPE" == "msys" ]]; then
echo "Detected Windows environment. Skipping VBoxManage check as Vagrant will handle VirtualBox interactions."
else
# Check if VirtualBox is installed (for non-Windows systems)
if ! command -v VBoxManage &> /dev/null; then
echo "VirtualBox is not installed. Please install VirtualBox to proceed."
exit 1
fi
fi
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
echo "Script directory: $SCRIPT_DIR"
VAGRANT_DIR="$SCRIPT_DIR/../vagrant/dev/ubuntu/"
echo "Vagrant directory: $VAGRANT_DIR"
cd "$VAGRANT_DIR" || {
echo "Failed to change directory to Vagrant directory: $VAGRANT_DIR"
exit 1
}
# Check if any VMs are running; if not, run 'vagrant up'
if [ -z "$(vagrant status | grep 'running')" ]; then
echo "No Vagrant VMs are running. Starting VMs with 'vagrant up'..."
vagrant up
fi
network_info=()
vagrant_ports=()
echo "Gathering network information from running VMs..."
running_vms=$(vagrant status | grep "running" | awk '{print $1}')
for vm in $running_vms; do
# Check network interfaces
vm_info=$(vagrant ssh "$vm" -c "ip -j addr" | jq -r '
.[] |
"Interface: \(.ifname)\n" +
(if .addr_info then
(.addr_info | map(" IP (\(.family)): \(.local)") | join("\n"))
else
""
end)
')
# Save the VM's network info to the array
network_info+=("$vm:\n$vm_info")
done
for vm in $running_vms; do
echo $vm
echo "----------------------------------------"
vagrant ssh "$vm" -c "free" | grep 'Mem:' | awk '{print "Memory in bytes: " $2 " Memory in MB: " $2/1024/1024}'
vagrant ssh "$vm" -c "lscpu" | grep 'CPU(s):' | grep -v 'NUMA' | awk '{print "CPU count: " $2}'
echo "----------------------------------------"
done
echo "Network information gathered successfully."
# get vagrant ports
echo "Gathering Vagrant port information..."
# Ensure unique ports are added to the vagrant_ports array
add_unique_port() {
local port=$1
for existing_port in "${vagrant_ports[@]}"; do
if [ "$existing_port" == "$port" ]; then
return
fi
done
vagrant_ports+=("$port")
}
while read -r line; do
echo "Processing line: $line"
# Extract the port number
port=$(echo "$line" | awk '{print $2}')
echo "Extracted port: $port"
vagrant_ports+=("$port")
done < <(vagrant ssh-config | grep Port)
while read -r line; do
echo "Processing line: $line"
# Extract the port number
port=$(echo "$line" | awk '{print $2}')
echo "Extracted port: $port"
add_unique_port "$port"
done < <(vagrant ssh-config | grep Port)
# Print network information
for info in "${network_info[@]}"; do
echo "----------------------------------------"
echo -e "$info"
echo "----------------------------------------"
done
# Print Vagrant ports
echo "Vagrant Ports:"
for port in "${vagrant_ports[@]}"; do
echo "Port: $port"
done
echo "Creating Ansible inventory file..."
inventory_file="$SCRIPT_DIR/ansible_inventory.ini"
echo "[all]" > "$inventory_file"
i=0
for vm in $running_vms; do
port="${vagrant_ports[$i]}"
echo "$vm ansible_host=127.0.0.1 ansible_port=$port ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/$vm/virtualbox/private_key ansible_python_interpreter=/usr/bin/python3" >> "$inventory_file"
((i++))
done
echo "" >> "$inventory_file"
echo "[vms]" >> "$inventory_file"
for vm in $running_vms; do
echo $vm >> "$inventory_file"
done
echo "Ansible inventory file created at: $inventory_file"
# source venv ansible
ANSIBLE_VENV_DIR="$SCRIPT_DIR/../ansible/venv"
if [ -d "$ANSIBLE_VENV_DIR" ]; then
echo "Activating Ansible virtual environment..."
source "$ANSIBLE_VENV_DIR/bin/activate"
else
echo "Ansible virtual environment not found at $ANSIBLE_VENV_DIR. Please create it before running this script."
exit 1
fi
ANSIBLE_HOST_KEY_CHECKING=False ansible --inventory-file ../../../scripts/ansible_inventory.ini -m ping all | cat
# exit if error from ping
if [ $? -ne 0 ]; then
echo "Ansible ping failed. Please check your Vagrant VMs and network configuration."
exit 1
fi
ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook ../../../ansible/install_keepalived.yaml --inventory-file ../../../scripts/ansible_inventory.ini | cat
# exit if error from playbook
if [ $? -ne 0 ]; then
echo "Ansible playbook failed. Please check your Vagrant VMs and network configuration."
exit 1
fi
echo "Keepalived installation completed successfully."
ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook ../../../ansible/install_k3s_3node.yaml --inventory-file ../../../scripts/ansible_inventory.ini | cat
if [ $? -ne 0 ]; then
echo "Ansible playbook failed. Please check your Vagrant VMs and network configuration."
exit 1
fi
echo "K3s installation completed successfully."