mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-14 18:41:35 +00:00
We had to bump up kubeadm configuration version (from v1beta3 to v1beta4), and v1beta4 doesn't work with k8s 1.28, which is used for "oldversion" clusters. So we're bumping these to 1.31.
27 lines
363 B
Bash
27 lines
363 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.31.11
|
|
|
|
STEPS="
|
|
terraform
|
|
wait
|
|
standardize
|
|
clusterize
|
|
tools
|
|
docker
|
|
createuser
|
|
webssh
|
|
tailhist
|
|
kubepkgs
|
|
kubeadm
|
|
kubetools
|
|
kubetest
|
|
"
|