From 1b7cd58439bbcdf3c9a2ba60042644c01024ee38 Mon Sep 17 00:00:00 2001 From: daniellrr Date: Mon, 29 Jan 2024 15:51:45 +0100 Subject: [PATCH] add support for upgrading edge cluster --- upgrade_edge/upgrade_edge.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/upgrade_edge/upgrade_edge.sh b/upgrade_edge/upgrade_edge.sh index 8cd47ef..0875def 100644 --- a/upgrade_edge/upgrade_edge.sh +++ b/upgrade_edge/upgrade_edge.sh @@ -7,7 +7,7 @@ #TALOS_VERSION="v1.5.5" #UPGRADE_KUBERENTES="true" -if [[ "$UPGRADE_KUBERNETES" != "true" ]] && [[ "$UPGRADE_TALOS" != "true" ]]; then +if "$UPGRADE_KUBERNETES" != "true" && "$UPGRADE_TALOS" != "true" ; then echo "None of the variables UPGRADE_KUBERNETES or UPGRADE_TALOS has been set to true (true as a string, not a boolean), exiting without any upgrading" echo $UPGRADE_KUBERENTES echo $UPGRADE_TALOS @@ -76,14 +76,14 @@ upgrade_kubernetes() { ./talosctl-"${server_version}" -n $SERVER_IP -e $SERVER_IP upgrade-k8s --to $NEXT_VERSION } -if [ "$UPGRADE_TALOS" = "true" ] && [ "$UPGRADE_KUBERENTES" = "true" ]; then +if "$UPGRADE_TALOS" = "true" && "$UPGRADE_KUBERENTES" = "true" ; then echo "Cannot upgrade both Talos and Kubernetes at the same time." exit 0 -elif [ "$UPGRADE_TALOS" = "true" ]; then +elif "$UPGRADE_TALOS" = "true"; then check_talos_version_existence check_talosctl_version upgrade_talos -elif [ "$UPGRADE_KUBERENTES" = "true" ]; then +elif "$UPGRADE_KUBERENTES" = "true" ; then check_talosctl_version get_current_k8s_version upgrade_kubernetes