mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-21 16:22:51 +00:00
Break out kubernetes package installation and kubeadm invocation to two different steps, so that we can install kubernetes packages without setting up the cluster (for the new DMUC labs).
27 lines
376 B
Bash
27 lines
376 B
Bash
CLUSTERSIZE=1
|
|
|
|
CLUSTERPREFIX=monokube
|
|
|
|
# We're sticking to this in the first DMUC lab,
|
|
# because it still works with Docker, and doesn't
|
|
# require a ServiceAccount signing key.
|
|
KUBEVERSION=1.19.11
|
|
|
|
USER_LOGIN=k8s
|
|
USER_PASSWORD=training
|
|
|
|
STEPS="
|
|
wait
|
|
standardize
|
|
clusterize
|
|
tools
|
|
docker
|
|
disabledocker
|
|
createuser
|
|
webssh
|
|
tailhist
|
|
kubebins
|
|
kubetools
|
|
ips
|
|
"
|