modified: docs/k3s-cluster.md
All checks were successful
Monitoring services CI/CD Pipeline / deploy (push) Successful in 25s
Deploy Casa services CI/CD Pipeline / deploy (push) Successful in 18s

This commit is contained in:
2026-01-31 00:57:23 +00:00
parent 28a98ef708
commit 829f939c4a

View File

@@ -2,6 +2,8 @@
**Table of Contents:** **Table of Contents:**
- [Common](#common)
- [name servers](#name-servers)
- [Master Node](#master-node) - [Master Node](#master-node)
- [Master Node - proxmox vm](#master-node---proxmox-vm) - [Master Node - proxmox vm](#master-node---proxmox-vm)
- [Master Node - network configuration](#master-node---network-configuration) - [Master Node - network configuration](#master-node---network-configuration)
@@ -23,6 +25,18 @@ Edit /etc/fstab and comment out any swap entries:
sudo apt update -y | sudo apt install curl btop -y sudo apt update -y | sudo apt install curl btop -y
``` ```
## Common
### name servers
``` bash
cat <<EOF > /etc/resolv.conf
domain dev.lan
search dev.lan. lan.
nameserver 192.168.14.254
EOF
```
## Master Node ## Master Node
| Name | Value | | Name | Value |
@@ -75,11 +89,6 @@ iface ens18 inet static
gateway 192.168.0.1 gateway 192.168.0.1
EOF EOF
cat <<EOF > /etc/resolv.conf
domain dev.lan
search dev.lan. lan.
nameserver 192.168.14.1
EOF
``` ```
``` bash ``` bash