Kubernetes Cluster in Proxmox VE (AlmaLinux/CentOS): Unterschied zwischen den Versionen

K
keine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
__NOINDEX__
__NOINDEX__
Anleitung um ein Kubernetes Cluster innerhalb von Proxmox VE einzurichten.
'''''Getestet auf AlmaLinux 8'''''


<nowiki>######################</nowiki>
<nowiki>######################</nowiki>
Zeile 7: Zeile 14:
<nowiki>######################</nowiki>
<nowiki>######################</nowiki>


<nowiki>#</nowiki> Statische IP
<nowiki>#</nowiki> Feste IP einrichten


Grafische Oberfläche:<syntaxhighlight lang="bash">
nmtui
nmtui
</syntaxhighlight>Oder per Konsole (Name des Interfaces kann abweichen):<syntaxhighlight lang="bash">
vi /etc/sysconfig/network-scripts/ifcfg-ens18
</syntaxhighlight>Beispiel:<syntaxhighlight lang="bash">
BOOTPROTO=none
IPADDR=192.168.2.65
PREFIX=24
GATEWAY=192.16.2.1
DNS1=192.168.2.1
DNS2=1.1.1.1
</syntaxhighlight>


<nowiki>#</nowiki> Containerd


<nowiki>#</nowiki> Containerd installieren<syntaxhighlight lang="bash">
dnf install -y yum-utils
dnf install -y yum-utils
 
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum-config-manager --add-repo <nowiki>https://download.docker.com/linux/centos/docker-ce.repo</nowiki>
 
dnf install containerd
dnf install containerd
 
</syntaxhighlight><nowiki>#</nowiki> Die ggf. automatisch installierte config.toml löschen und neu generieren:<syntaxhighlight lang="bash">
<nowiki>#</nowiki> Remove old config file if present and populate new default config
 
rm /etc/containerd/config.toml
rm /etc/containerd/config.toml
containerd config default | tee /etc/containerd/config.toml
containerd config default | tee /etc/containerd/config.toml
 
</syntaxhighlight><nowiki>#</nowiki> Edit config.toml
<nowiki>#</nowiki> Edit config.toml


vi /etc/containerd/config.toml
vi /etc/containerd/config.toml
Zeile 240: Zeile 252:


]
]
== Quellen ==
https://www.youtube.com/watch?v=U1VzcjCB_sY