41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
apt update
|
|
apt install -y git-lfs
|
|
git lfs install
|
|
git lfs pull
|
|
|
|
#Install Docker
|
|
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
|
|
|
|
apt-get update
|
|
apt-get install ca-certificates curl
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
apt-get update
|
|
|
|
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
|
|
#--#
|
|
#Install k8s dependecies
|
|
apt install -y conntrack ebtables socat nftables
|
|
cd dependecies
|
|
dpkg -i *.deb
|
|
cd ..
|
|
# install kubernetie
|
|
cd kuberneties/
|
|
dpkg -i *.deb
|
|
|
|
|
|
## Setup k8s
|
|
systemctl start docker
|
|
swapoff -a
|
|
|
|
kubeadm init --config ./config.yaml
|
|
|