From c510b8599c1a0b652fc5ce680dd35728be63ee6c Mon Sep 17 00:00:00 2001 From: gemini Date: Fri, 6 Mar 2026 21:32:08 +0000 Subject: [PATCH] docs: remove old server_installation_instructions.md after renaming to README.md --- .../server_installation_instructions.md | 67 ------------------- 1 file changed, 67 deletions(-) delete mode 100644 02_rke2_installation/server_installation_instructions.md diff --git a/02_rke2_installation/server_installation_instructions.md b/02_rke2_installation/server_installation_instructions.md deleted file mode 100644 index 2a53d3b..0000000 --- a/02_rke2_installation/server_installation_instructions.md +++ /dev/null @@ -1,67 +0,0 @@ -# ⚓ RKE2 Server Installation - -Diese Anleitung beschreibt die Installation und Konfiguration eines **RKE2-Servers** (Next Generation Rancher Kubernetes Engine) auf dem ASUS-Node. Dieses Setup ist speziell auf die Nutzung von **Cilium** und **Envoy Gateway** vorbereitet. - -## 🛠️ 1. RKE2 Installation -Führe den folgenden Befehl direkt auf dem Ziel-Server aus: - -```bash -# RKE2 Server Binary installieren -curl -sfL https://get.rke2.io | sudo INSTALL_RKE2_TYPE="server" sh -``` - ---- - -## ⚙️ 2. Cluster Konfiguration -Wir konfigurieren RKE2 so, dass keine Standard-CNI (Canal) und kein kube-proxy installiert wird, um Platz für **Cilium** (eBPF) zu schaffen. Ebenfalls wird der NGINX Ingress deaktiviert, da wir das **Envoy Gateway** nutzen. - -```bash -# Konfigurationsverzeichnis erstellen -sudo mkdir -p /etc/rancher/rke2 - -# Konfigurationsdatei schreiben -cat <