mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-21 08:12:49 +00:00
We now go from 1.22 to 1.23. Updating to 1.22 was necessary because Kubernetes 1.27 deprecated kubeadm config v1beta2, which forced us to upgrade to v1beta3, which was only introduced in 1.22. In other words, our scripts can only install Kubernetes 1.22+ now.
25 lines
337 B
Bash
25 lines
337 B
Bash
CLUSTERSIZE=3
|
|
|
|
CLUSTERPREFIX=oldversion
|
|
|
|
USER_LOGIN=k8s
|
|
USER_PASSWORD=training
|
|
|
|
# For a list of old versions, check:
|
|
# https://kubernetes.io/releases/patch-releases/#non-active-branch-history
|
|
KUBEVERSION=1.22.17
|
|
|
|
STEPS="
|
|
wait
|
|
standardize
|
|
clusterize
|
|
tools
|
|
docker
|
|
createuser
|
|
webssh
|
|
tailhist
|
|
kube
|
|
kubetools
|
|
kubetest
|
|
"
|