From 7d7ab41d5f5da582dc73c43071b38a25d71b816c Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Boll Date: Thu, 5 Sep 2024 13:30:29 +0200 Subject: [PATCH] Cluster name must be unique to not clash with aro-hcp dev env --- .../configurations/cs-integ-mgmt-cluster.bicepparam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-infrastructure/configurations/cs-integ-mgmt-cluster.bicepparam b/dev-infrastructure/configurations/cs-integ-mgmt-cluster.bicepparam index 4f7f91e29..501373023 100644 --- a/dev-infrastructure/configurations/cs-integ-mgmt-cluster.bicepparam +++ b/dev-infrastructure/configurations/cs-integ-mgmt-cluster.bicepparam @@ -4,7 +4,7 @@ param kubernetesVersion = '1.30.3' param vnetAddressPrefix = '10.132.0.0/14' param subnetPrefix = '10.132.8.0/21' param podSubnetPrefix = '10.132.64.0/18' -param aksClusterName = take('aro-hcp-mgmt-cluster-${uniqueString('mgmt-cluster')}', 63) +param aksClusterName = take('cs-integ-mgmt-cluster-${uniqueString('cs-integ-mgmt-cluster')}', 63) param aksKeyVaultName = 'aks-kv-cs-integ-mc-1' param systemAgentMinCount = 2 param systemAgentMaxCount = 3