- 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.
33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
# Talos
|
|
|
|
This is an alternate setup to using ks that uses talos and bare kubernetes. IN PROGRESS.
|
|
|
|
From https://www.talos.dev/v1.10/introduction/getting-started/
|
|
|
|
```bash
|
|
# Install kubectl
|
|
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
|
|
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl.sha256"
|
|
echo "$(cat kubectl.sha256) kubectl" | sha256sum --check
|
|
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
|
|
|
|
# Install talosctl
|
|
curl -sL https://talos.dev/install | sh
|
|
|
|
# Generate cluster config files (and pki and tokens)
|
|
talosctl gen config test-cluster https://192.168.8.238:6443
|
|
|
|
talosctl -n 192.168.8.238 get disks --insecure
|
|
# Update disk in controlplane.yml
|
|
|
|
# Apply control plane config
|
|
talosctl apply-config --insecure --nodes 192.168.8.238 --file controlplane.yaml
|
|
|
|
# Bootstrap cluster on control plan
|
|
talosctl bootstrap --nodes 192.168.8.238 --endpoints 192.168.8.238 --talosconfig=./talosconfig
|
|
|
|
# Merge into kubeconfig
|
|
talosctl kubeconfig --nodes 192.168.8.238 --endpoints 192.168.8.238 --talosconfig=./talosconfig
|
|
|
|
```
|