install doku

This commit is contained in:
2025-11-12 10:23:29 +01:00
parent c5af0ae5a7
commit 1d63116829
+31
View File
@@ -0,0 +1,31 @@
# Installation Kubernets Cluster
## OS Installation
Als Basis-Installation wird Debian 13 verwendet. Standard-Installation mit SSH-Server und Standard-Tools. Update / Upgrade aller Pakete auf aktuellen Stand.
## Vorbereitung Controll Plane
* Benötigte Pakete installieren
´´´
apt update
apt -y install containerd curl gpg
´´´
* Konfiguration für containerd erstellen
´´´
containerd config default | tee /etc/containerd/config.toml
´´´
* Anpassen der config.toml
´´´
nano /etc/containerd/config.toml
´´´
Anpassen folgender Zeilen
´´´
sandbox_image = "registry.k8s.io/pause:3.10"
SystemdCgroup = true
´´´
* Dienst neu starten
´´´
systemctl restart containerd
´´´