Last active
December 22, 2022 07:07
-
-
Save initcron/517bac5c39b04275242349bd78413521 to your computer and use it in GitHub Desktop.
Kubernetes User Data 2022
This file contains 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 | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update | |
apt-get install -y git wget net-tools | |
# Prereqs | |
modprobe overlay | |
modprobe br_netfilter | |
swapoff -a | |
sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab | |
tee /etc/modules-load.d/k8s.conf <<EOF | |
overlay | |
br_netfilter | |
EOF | |
cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf | |
net.bridge.bridge-nf-call-iptables = 1 | |
net.bridge.bridge-nf-call-ip6tables = 1 | |
net.ipv4.ip_forward = 1 | |
EOF | |
sysctl --system | |
# Install Containerd as Runtime | |
apt-get install -yq \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
gnupg \ | |
software-properties-common | |
mkdir -p /etc/apt/keyrings | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
echo \ | |
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null | |
apt-get update | |
apt-get install -yq containerd.io | |
containerd config default | tee /etc/containerd/config.toml >/dev/null 2>&1 | |
sed -i 's/SystemdCgroup \= false/SystemdCgroup \= true/g' /etc/containerd/config.toml | |
systemctl restart containerd | |
systemctl enable containerd | |
# Install kubeadm, kubectl and kubelet | |
curl -fsSLo /etc/apt/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg | |
echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list | |
apt-get update -y | |
apt-get install -y kubelet kubeadm kubectl kubernetes-cni nfs-common | |
# Additional Configuration | |
#sysctl net.bridge.bridge-nf-call-iptables=1 | |
rm -rf /var/lib/kubelet/* | |
apt-get install nfs-common -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment