This commit is contained in:
Eliezer Croitoru 2024-01-27 17:52:52 +00:00
parent 487f91b786
commit 69b22cbf0d
4 changed files with 19 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
all:
echo OK
install-k8s-from-repo:
bash install-kube-from-repo.sh
install-kubectl-from-bin:
bash install-kubectl.sh
install-containerd:
bash install-containerd.sh
sysprep:
bash cloud-init-sysprep.sh

0
install-containerd.sh Normal file → Executable file
View File

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
export DEBIAN_FRONTEND=noninteractive
apt install -y apt-transport-https ca-certificates curl gpg
curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.29/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
export DEBIAN_FRONTEND=noninteractive
apt install -y apt-transport-https ca-certificates curl wget
mkdir -p bin