This commit is contained in:
2025-11-12 10:26:13 +01:00
parent d40b684ad5
commit 27868e2f9c
+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
```