- Refactor dnsmasq configuration and scripts for improved variable handling and clarity - Updated dnsmasq configuration files to use direct variable references instead of data source functions for better readability. - Modified setup scripts to ensure they are run from the correct environment and directory, checking for the WC_HOME variable. - Changed paths in README and scripts to reflect the new directory structure. - Enhanced error handling in setup scripts to provide clearer guidance on required configurations. - Adjusted kernel and initramfs URLs in boot.ipxe to use the updated variable references.
34 lines
950 B
Bash
Executable File
34 lines
950 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Navigate to script directory
|
|
SCRIPT_PATH="$(realpath "${BASH_SOURCE[0]}")"
|
|
SCRIPT_DIR="$(dirname "$SCRIPT_PATH")"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
echo "Setting up your wild-cloud cluster services..."
|
|
echo
|
|
|
|
./metallb/install.sh
|
|
./longhorn/install.sh
|
|
./traefik/install.sh
|
|
./coredns/install.sh
|
|
./cert-manager/install.sh
|
|
./externaldns/install.sh
|
|
./kubernetes-dashboard/install.sh
|
|
./nfs/install.sh
|
|
./docker-registry/install.sh
|
|
|
|
echo "Infrastructure setup complete!"
|
|
echo
|
|
echo "Next steps:"
|
|
echo "1. Install Helm charts for non-infrastructure components"
|
|
INTERNAL_DOMAIN=$(wild-config cloud.internalDomain)
|
|
echo "2. Access the dashboard at: https://dashboard.${INTERNAL_DOMAIN}"
|
|
echo "3. Get the dashboard token with: ./bin/dashboard-token"
|
|
echo
|
|
echo "To verify components, run:"
|
|
echo "- kubectl get pods -n cert-manager"
|
|
echo "- kubectl get pods -n externaldns"
|
|
echo "- kubectl get pods -n kubernetes-dashboard"
|
|
echo "- kubectl get clusterissuers" |