1.052
Bearbeitungen
KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
Zeile 2: | Zeile 2: | ||
Anleitung um ein Kubernetes Cluster innerhalb von Proxmox VE einzurichten. | Anleitung um ein Kubernetes Cluster innerhalb von Proxmox VE einzurichten. | ||
Zeile 37: | Zeile 38: | ||
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> | </syntaxhighlight><nowiki>#</nowiki> Die neu erzeugte config.toml bearbeiten<syntaxhighlight lang="bash"> | ||
vi /etc/containerd/config.toml | vi /etc/containerd/config.toml | ||
</syntaxhighlight>Folgenden Absatz suchen und <code>SystemdCgroup</code> auf '''true''' setzen (Suchen in vi mit <code>/<Suchbegriff></code>):<syntaxhighlight lang="bash" line="1"> | |||
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc.options] | [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc.options] | ||
BinaryName = "" | |||
CriuImagePath = "" | |||
CriuPath = "" | |||
CriuWorkPath = "" | |||
IoGid = 0 | |||
IoUid = 0 | |||
NoNewKeyring = false | |||
NoPivotRoot = false | |||
Root = "" | |||
ShimCgroup = "" | |||
SystemdCgroup = false | |||
</syntaxhighlight><nowiki>#</nowiki><syntaxhighlight lang="bash"> | |||
<nowiki>#</nowiki> | |||
vi /etc/sysctl.conf | vi /etc/sysctl.conf | ||
</syntaxhighlight>Folgende Zeile am Ende einfügen, bzw. auskommentieren, falls schon vorhanden:<syntaxhighlight lang="bash"> | |||
net.ipv4.ip_forward=1 | net.ipv4.ip_forward=1 | ||
</syntaxhighlight><nowiki>#</nowiki> Module config / Enable bridge netfilter<syntaxhighlight lang="bash"> | |||
<nowiki>#</nowiki> Module config / Enable bridge netfilter | |||
vi /etc/modules-load.d/k8s.conf | vi /etc/modules-load.d/k8s.conf | ||
</syntaxhighlight>Einfügen:<syntaxhighlight lang="bash"> | |||
br_netfilter | br_netfilter | ||
</syntaxhighlight><nowiki>#</nowiki> Reboot | |||
<nowiki>#</nowiki> Reboot | |||
reboot | reboot | ||
Zeile 255: | Zeile 239: | ||
== Quellen == | == Quellen == | ||
https://www.youtube.com/watch?v=U1VzcjCB_sY | https://www.youtube.com/watch?v=U1VzcjCB_sY | ||
https://techviewleo.com/how-to-install-docker-ce-on-almalinux/ |