Skip to content

Instantly share code, notes, and snippets.

View sj14's full-sized avatar

Simon Jürgensmeyer sj14

View GitHub Profile
@sj14
sj14 / talos-upgrade.sh
Last active May 30, 2024 12:12
Talos upgrade script
#!/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