Add dnsmasq and Talos setup documentation and configuration files

- Created `dnsmasq-setup.md` guide for setting up dnsmasq on hardware like Orange Pi Zero 3.
- Added `talos-setup.md` guide for an alternate setup using Talos and bare Kubernetes.
- Introduced configuration files for dnsmasq including `.not_logged_in_yet`, `bare-metal.yaml`, `boot.ipxe`, `dnsmasq.conf`, and `nginx.conf`.
- Implemented `setup.sh` script for automating the installation and configuration of dnsmasq and nginx.
- Updated example configuration in `config.example.yaml` to include Talos versioning.
- Modified README to reflect changes in Wild-Cloud app commands.
This commit is contained in:
2025-06-08 16:32:45 -07:00
parent 0971452900
commit 02a282899b
15 changed files with 1062 additions and 38 deletions

134
bin/install-dnsmasq Executable file
View File

@@ -0,0 +1,134 @@
#!/bin/bash
# Setup.
set -e
set -o pipefail
# Function to process a file with gomplate.
process_file() {
local src_file="$1"
local dest_file="$2"
if [[ "${src_file}" == *.yaml ]] || [[ "${src_file}" == *.ipxe ]] || [[ "${src_file}" == *.conf ]]; then
echo "Processing YAML file: ${dest_file}"
gomplate -d config=.wildcloud/config.yaml -f "${src_file}" > "${dest_file}"
else
cp "${src_file}" "${dest_file}"
fi
}
# Initialize wildcloud environment.
# Ensure we have a .wildcloud directory.
if [ ! -d ".wildcloud" ]; then
echo "Error: .wildcloud directory not found in current directory"
echo "This script must be run from a directory that contains a .wildcloud directory"
exit 1
fi
# Ensure we have a config file.
if [ ! -f ".wildcloud/config.yaml" ]; then
echo "Error: .wildcloud/config.yaml not found"
exit 1
fi
WILDCLOUD_CACHE_DIR=".wildcloud/cache"
# Find the wildcloud repository path from the config file.
WILDCLOUD_REPO=$(yq eval '.wildcloud.repository' .wildcloud/config.yaml)
if [ -z "${WILDCLOUD_REPO}" ] || [ "${WILDCLOUD_REPO}" = "null" ]; then
echo "Error: wildcloud.repository not found in .wildcloud/config.yaml"
exit 1
fi
# The source templates for asq setup.
DNSMASQ_TEMPLATE_DIR="${WILDCLOUD_REPO}/infrastructure_setup/dnsmasq"
if [ ! -d "${DNSMASQ_TEMPLATE_DIR}" ]; then
echo "Error: DNSMasq setup directory not found at ${DNSMASQ_TEMPLATE_DIR}"
exit 1
fi
# Where to put the processed DNSMasq files.
DNSMASQ_SETUP_DIR="cluster/dnsmasq"
mkdir -p $DNSMASQ_SETUP_DIR
# Optionally remove the setup directory if it already exists.
if [ -d "${DNSMASQ_SETUP_DIR}" ]; then
echo "Warning: Destination directory ${DNSMASQ_SETUP_DIR} already exists"
read -p "Do you want to overwrite it? (y/N): " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Installation cancelled"
exit 1
fi
rm -rf "${DNSMASQ_SETUP_DIR}"
fi
# Compile templates to setup directory.
find "${DNSMASQ_TEMPLATE_DIR}" -type d | while read -r src_dir; do
rel_path="${src_dir#${DNSMASQ_TEMPLATE_DIR}}"
rel_path="${rel_path#/}" # Remove leading slash if present
if [ -n "${rel_path}" ]; then
mkdir -p "${DNSMASQ_SETUP_DIR}/${rel_path}"
fi
done
find "${DNSMASQ_TEMPLATE_DIR}" -type f | while read -r src_file; do
rel_path="${src_file#${DNSMASQ_TEMPLATE_DIR}}"
rel_path="${rel_path#/}" # Remove leading slash if present
dest_file="${DNSMASQ_SETUP_DIR}/${rel_path}"
# Ensure destination directory exists
dest_dir=$(dirname "${dest_file}")
mkdir -p "${dest_dir}"
process_file "${src_file}" "${dest_file}"
done
echo "Successfully created dnsmasq setup files from templates."
# Create Talos bare metal boot assets.
echo "Creating Talos bare metal boot assets..."
TALOS_ID=$(curl -X POST --data-binary @${DNSMASQ_TEMPLATE_DIR}/bare-metal.yaml https://factory.talos.dev/schematics | jq -r '.id')
if [ -z "${TALOS_ID}" ] || [ "${TALOS_ID}" = "null" ]; then
echo "Error: Failed to create Talos bare metal boot assets"
exit 1
fi
echo "Successfully created Talos bare metal boot assets with ID: ${TALOS_ID}"
# Download Talos kernel and initramfs.
echo "Downloading Talos kernel and initramfs for PXE boot..."
NODE_IMAGES_DIR="${WILDCLOUD_CACHE_DIR}/pxe-web-root"
mkdir -p "${NODE_IMAGES_DIR}"
cp "${DNSMASQ_SETUP_DIR}/boot.ipxe" "${NODE_IMAGES_DIR}/boot.ipxe"
mkdir -p "${NODE_IMAGES_DIR}/amd64"
# Get Talos version from config
TALOS_VERSION=$(yq eval '.cluster.nodes.talos.version' .wildcloud/config.yaml)
if [ -z "${TALOS_VERSION}" ] || [ "${TALOS_VERSION}" = "null" ]; then
echo "Error: .cluster.nodes.talos.version not found in .wildcloud/config.yaml"
exit 1
fi
# Download kernel if not already exists
if [ ! -f "${NODE_IMAGES_DIR}/amd64/vmlinuz" ]; then
echo "Downloading Talos kernel..."
wget -O "${NODE_IMAGES_DIR}/amd64/vmlinuz" "https://pxe.factory.talos.dev/image/${TALOS_ID}/${TALOS_VERSION}/kernel-amd64"
else
echo "Talos kernel already exists, skipping download"
fi
# Download initramfs if not already exists
if [ ! -f "${NODE_IMAGES_DIR}/amd64/initramfs.xz" ]; then
echo "Downloading Talos initramfs..."
wget -O "${NODE_IMAGES_DIR}/amd64/initramfs.xz" "https://pxe.factory.talos.dev/image/${TALOS_ID}/${TALOS_VERSION}/initramfs-amd64.xz"
else
echo "Talos initramfs already exists, skipping download"
fi
# Copy files to dnsmasq server.
echo "Copying DNSMasq setup files to dnsmasq server..."
scp -r "${DNSMASQ_SETUP_DIR}"/* root@192.168.8.50:/tmp/dnsmasq-setup/
scp -r "${NODE_IMAGES_DIR}"/* root@192.168.8.50:/tmp/dnsmasq-setup/pxe-web-root/