From 656c87d8797dd8c8cb59930673d62036d4377ec4 Mon Sep 17 00:00:00 2001 From: mjiao Date: Fri, 7 Feb 2025 23:57:04 +0100 Subject: [PATCH] update the supported aro version Signed-off-by: mjiao --- bicep.makefile | 2 +- bicep/aro.bicep | 4 ++-- edge-integration-cell/external-redis/get_redis_access.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bicep.makefile b/bicep.makefile index 8af96c5..6603ae0 100644 --- a/bicep.makefile +++ b/bicep.makefile @@ -3,7 +3,7 @@ ARO_LOCATION?=northeurope ARO_CLUSTER_NAME?=aro-sapeic ARO_DOMAIN?=saponrhel.org -ARO_VERSION?=4.14.16 +ARO_VERSION?=4.15.35 .PHONY: aro-deploy aro-deploy: domain-zone-exists network-deploy ## Deploy ARO diff --git a/bicep/aro.bicep b/bicep/aro.bicep index 82eae80..ef27fc9 100644 --- a/bicep/aro.bicep +++ b/bicep/aro.bicep @@ -9,9 +9,9 @@ param domain string @secure() param pullSecret string = '' @allowed([ - '4.14.16' + '4.15.35' + '4.14.38' '4.13.40' - '4.12.25' ]) param version string param servicePrincipalClientId string diff --git a/edge-integration-cell/external-redis/get_redis_access.sh b/edge-integration-cell/external-redis/get_redis_access.sh index b33fca9..613a478 100644 --- a/edge-integration-cell/external-redis/get_redis_access.sh +++ b/edge-integration-cell/external-redis/get_redis_access.sh @@ -27,7 +27,7 @@ port=$(echo "$secret_data" | jq -r '.data["port"]' | base64 --decode) service_name=$(echo "$secret_data" | jq -r '.data["service_name"]' | base64 --decode) -service_name_with_ns="${service_name}.${namespace}.svc." +service_name_with_ns="${service_name}.${namespace}.svc" redis_server_name="rec.${namespace}.svc.cluster.local" # Check if any of the values are empty