infctl-cli/scripts/install_vagrant_workstation.sh
jon brookes b2b028a16c feat: add Ingress and Service configurations for nginx deployment, and implement MetalLB and Traeik installation scripts
refactor: remove obsolete Traefik installation script

feat: add environment checks and configurations for Vagrant setup, including dnsmasq  MetalLB  and ingress
2025-08-24 17:35:03 +01:00

16 lines
342 B
Bash
Executable file

#!/usr/bin/env bash
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
VAGRANT_DIR="$SCRIPT_DIR/../vagrant/dev/ubuntu/"
echo "Script directory: $SCRIPT_DIR"
echo "Vagrant directory: $VAGRANT_DIR"
cd "$VAGRANT_DIR" || {
echo "Failed to change directory to Vagrant directory: $VAGRANT_DIR"
exit 1
}
vagrant up workstation