This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o nounset # fail if an unset variable is used | |
set -o errexit # fail if a command exits with non-zero | |
set -o pipefail # fail if a command in a pipe fails | |
readonly TALOS_VESION=1.7.2 | |
readonly K8S_VERSION=1.30.1 | |
readonly CLUSTERS=( <cluster-1> <cluster-2> ) # <-- ADJUST ME |
OlderNewer