Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ sudo sysctl --system
> Disable swap on controlplane and dataplane nodes

```bash
sudo swappff -a
sudo swapoff -a
```

```bash
Expand Down Expand Up @@ -200,6 +200,12 @@ sudo kubeadm join $controller_private_ip:6443 --token $token --discovery-token-c
kubeadm token create --print-join-command
```

> In case you only have a single node, you would need to untaint the control panel node to allow for pods to be deployed on it.

```bash
kubectl taint nodes --all node-role.kubernetes.io/control-plane-
```

### To install metrics server

```bash
Expand Down