added vagrant build
This commit is contained in:
parent
2997f0252a
commit
6eabd40021
8 changed files with 240 additions and 12 deletions
9
scripts/ansible_inventory.ini
Normal file
9
scripts/ansible_inventory.ini
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[all]
|
||||
vm1 ansible_host=127.0.0.1 ansible_port=2222 ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm1/virtualbox/private_key ansible_python_interpreter=/usr/bin/python3
|
||||
vm2 ansible_host=127.0.0.1 ansible_port=2200 ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm2/virtualbox/private_key ansible_python_interpreter=/usr/bin/python3
|
||||
vm3 ansible_host=127.0.0.1 ansible_port=2201 ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm3/virtualbox/private_key ansible_python_interpreter=/usr/bin/python3
|
||||
|
||||
[vms]
|
||||
vm1
|
||||
vm2
|
||||
vm3
|
||||
0
scripts/configure_vagrant.sh
Normal file
0
scripts/configure_vagrant.sh
Normal file
|
|
@ -20,6 +20,7 @@ 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"
|
||||
|
|
@ -33,6 +34,7 @@ if [ -z "$(vagrant status | grep 'running')" ]; then
|
|||
fi
|
||||
|
||||
network_info=()
|
||||
vagrant_ports=()
|
||||
|
||||
echo "Gathering network information from running VMs..."
|
||||
running_vms=$(vagrant status | grep "running" | awk '{print $1}')
|
||||
|
|
@ -41,9 +43,8 @@ for vm in $running_vms; do
|
|||
|
||||
# Check network interfaces
|
||||
vm_info=$(vagrant ssh "$vm" -c "ip -j addr" | jq -r '
|
||||
.[] |
|
||||
"Interface: \(.ifname)\n" + 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
|
||||
|
|
@ -66,6 +67,34 @@ done
|
|||
|
||||
echo "Network information gathered successfully."
|
||||
|
||||
|
||||
# get vagrant ports
|
||||
echo "Gathering Vagrant port information..."
|
||||
# vagrant ssh-config | grep Port | while read -r line; do
|
||||
# echo "Processing line: $line"
|
||||
|
||||
# # Processing line: Port 2222
|
||||
# # Processing line: Port 2200
|
||||
# # Processing line: Port 2201
|
||||
|
||||
|
||||
# port=$(echo "$line" | awk '{print $2}')
|
||||
# echo "Extracted port: $port"
|
||||
# vagrant_ports+=("$port")
|
||||
# done
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
# Print network information
|
||||
for info in "${network_info[@]}"; do
|
||||
echo "----------------------------------------"
|
||||
|
|
@ -73,5 +102,65 @@ for info in "${network_info[@]}"; do
|
|||
echo "----------------------------------------"
|
||||
done
|
||||
|
||||
# Print Vagrant ports
|
||||
echo "Vagrant Ports:"
|
||||
for port in "${vagrant_ports[@]}"; do
|
||||
echo "Port: $port"
|
||||
done
|
||||
|
||||
# create an ansible inventory file
|
||||
# [all]
|
||||
# vm1 ansible_host=<vm1_ip> ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm1/virtualbox/private_key
|
||||
# vm2 ansible_host=<vm2_ip> ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm2/virtualbox/private_key
|
||||
# vm3 ansible_host=<vm3_ip> ansible_user=vagrant ansible_ssh_private_key_file=.vagrant/machines/vm3/virtualbox/private_key
|
||||
|
||||
# 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" >> "$inventory_file"
|
||||
# ((i++))
|
||||
# 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 "[children]" >> "$inventory_file"
|
||||
# echo "vm_group" >> "$inventory_file"
|
||||
# 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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue