mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
Summary of changes: - "workshopctl" is now "labctl" - it can handle deployment of VMs but also of managed Kubernetes clusters (and therefore, it replaces the "prepare-tf" directory) - support for many more providers has been added Check the README.md, in particular the "directory structure"; it has the most important information.
16 lines
210 B
Bash
16 lines
210 B
Bash
bold() {
|
|
echo "$(tput bold)$1$(tput sgr0)"
|
|
}
|
|
|
|
red() {
|
|
echo "$(tput setaf 1)$1$(tput sgr0)"
|
|
}
|
|
|
|
green() {
|
|
echo "$(tput setaf 2)$1$(tput sgr0)"
|
|
}
|
|
|
|
yellow() {
|
|
echo "$(tput setaf 3)$1$(tput sgr0)"
|
|
}
|