Last active
September 16, 2024 09:18
-
-
Save Reclyptor/7f64655e6177ce4f68b6974e9bf0204e to your computer and use it in GitHub Desktop.
Kubernetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| sudo kubeadm init --pod-network-cidr=10.244.0.0/16 | |
| mkdir -p $HOME/.kube | |
| sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config | |
| sudo chown $(id -u):$(id -g) $HOME/.kube/config | |
| kubectl apply -f https://github.com/flannel-io/flannel/releases/latest/download/kube-flannel.yml | |
| kubectl taint nodes --all node-role.kubernetes.io/control-plane- | |
| kubectl get nodes -o wide |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment