3
This commit is contained in:
parent
487f91b786
commit
69b22cbf0d
15
Makefile
Normal file
15
Makefile
Normal 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
0
install-containerd.sh
Normal file → Executable file
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
apt install -y apt-transport-https ca-certificates curl gpg
|
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
|
curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.29/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
apt install -y apt-transport-https ca-certificates curl wget
|
apt install -y apt-transport-https ca-certificates curl wget
|
||||||
|
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
|
Loading…
Reference in New Issue
Block a user