28 lines
373 B
Makefile
28 lines
373 B
Makefile
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
|
|
|
|
common-tools:
|
|
bash install-common-tools.sh
|
|
|
|
upgrade:
|
|
bash upgrade.sh
|
|
|
|
clear-ctrlr:
|
|
bash reset-ctrlr.sh
|
|
|
|
remove-containerd:
|
|
apt update
|
|
apt purge -y containerd
|