k3s version update to v1.35.2+k3s1
All checks were successful
Monitoring services CI/CD Pipeline / deploy (push) Successful in 21s
Deploy Casa services CI/CD Pipeline / deploy (push) Successful in 17s

fix: log spam every minute "Liveness (or Readiness) probe already exists for container", for every container.
Logs where being registered  on k3s process (systemd logs).
This commit is contained in:
Márcio Fernandes
2026-03-21 11:02:50 +00:00
parent a56f573a6f
commit 0bf368d129

View File

@@ -1,16 +1,19 @@
# Casa k3s cluster # Casa k3s cluster
**k3s version:** v1.35.2+k3s1
**Table of Contents:** **Table of Contents:**
- [Common](#common) - [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)
- [Master Node - k3s setup](#master-node---k3s-setup) - [Master Node - k3s setup](#master-node---k3s-setup)
- [minion01 - worker node](#minion01---worker-node) - [minion01 - worker node](#minion01---worker-node)
- [Minion01 - proxmox vm](#minion01---proxmox-vm) - [Minion01 - proxmox vm](#minion01---proxmox-vm)
- [Minion01 - k3s -setup](#minion01---k3s--setup) - [casa-minion-01 - k3s - setup](#casa-minion-01---k3s---setup)
## Common
**Disable swap:** **Disable swap:**
@@ -23,12 +26,22 @@ Edit /etc/fstab and comment out any swap entries:
**Other Packages:** **Other Packages:**
``` bash ``` bash
sudo apt update -y | sudo apt install curl btop -y sudo apt update -y && \
sudo apt install -y \
curl \
btop
``` ```
## Common **Update system:**
### name servers ``` bash
sudo apt update -y && \
sudo apt upgrade -y && \
sudo apt auto-remove -y
```
**name servers:**
``` bash ``` bash
cat <<EOF > /etc/resolv.conf cat <<EOF > /etc/resolv.conf
@@ -46,7 +59,6 @@ EOF
| **VLAN** | casa | | **VLAN** | casa |
| **IP** | 192.168.14.9 | | **IP** | 192.168.14.9 |
| **OS** | Debian GNU/Linux 12 (bookworm) | | **OS** | Debian GNU/Linux 12 (bookworm) |
| **k3s** | v1.35.0+k3s3 |
### Master Node - proxmox vm ### Master Node - proxmox vm
@@ -94,7 +106,7 @@ EOF
### Master Node - k3s setup ### Master Node - k3s setup
``` bash ``` bash
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.35.0+k3s3 sh - curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.35.2+k3s1 sh -
``` ```
**Taint NoSchedule on master node:** **Taint NoSchedule on master node:**
@@ -138,10 +150,8 @@ sockets: 1
| **VLAN** | casa | | **VLAN** | casa |
| **IP** | 192.168.14.10 | | **IP** | 192.168.14.10 |
| **OS** | Debian GNU/Linux 12 (bookworm) | | **OS** | Debian GNU/Linux 12 (bookworm) |
| **k3s** | v1.34.3+k3s1 (48ffa7b6) |
| **go** | go1.24.11 |
### Minion01 - k3s -setup ### casa-minion-01 - k3s - setup
``` bash ``` bash
# install k3s as agent / worker node # install k3s as agent / worker node
@@ -149,7 +159,7 @@ sockets: 1
# cat /var/lib/rancher/k3s/server/node-token # cat /var/lib/rancher/k3s/server/node-token
K3S_TOKEN="???" K3S_TOKEN="???"
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.35.0+k3s3 INSTALL_K3S_EXEC="agent --data-dir /dataDisk/k3s --server https://casa.dev.lan:6443 --token ${K3S_TOKEN}" sh -s - curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION=v1.35.2+k3s1 INSTALL_K3S_EXEC="agent --data-dir /dataDisk/k3s --server https://casa.dev.lan:6443 --token ${K3S_TOKEN}" sh -s -
``` ```
Change kubectl -n kube-system edit configmap local-path-config on kube-system to set path to provisioner. Change kubectl -n kube-system edit configmap local-path-config on kube-system to set path to provisioner.