diff --git a/config/config.msft.yaml b/config/config.msft.yaml index 1f028ea2f2..22d5ffe295 100644 --- a/config/config.msft.yaml +++ b/config/config.msft.yaml @@ -33,7 +33,7 @@ defaults: istioctlVersion: "1.24.1" tag: "prod-stable" targetVersion: "asm-1-23" - versions: ["\"asm-1-22\", \"asm-1-23\""] + versions: "\"asm-1-22\", \"asm-1-23\"" # MGMT cluster specifics mgmt: diff --git a/config/config.schema.json b/config/config.schema.json index ca8a4a3ec6..80c303aad3 100644 --- a/config/config.schema.json +++ b/config/config.schema.json @@ -675,7 +675,7 @@ }, "versions": { "description": "The current istio version in the AKS cluster", - "type": "array" + "type": "string" }, "targetVersion": { "description": "The target istio version that will be updated to", diff --git a/dev-infrastructure/configurations/svc-cluster.tmpl.bicepparam b/dev-infrastructure/configurations/svc-cluster.tmpl.bicepparam index 5decc1ffcf..747535c8a9 100644 --- a/dev-infrastructure/configurations/svc-cluster.tmpl.bicepparam +++ b/dev-infrastructure/configurations/svc-cluster.tmpl.bicepparam @@ -1,7 +1,7 @@ using '../templates/svc-cluster.bicep' param kubernetesVersion = '{{ .kubernetesVersion }}' -param istioVersion = [{{ .svc.istio.versions }}] +param istioVersion = ['{{ .svc.istio.versions }}'] param vnetAddressPrefix = '{{ .vnetAddressPrefix }}' param subnetPrefix = '{{ .subnetPrefix }}' param podSubnetPrefix = '{{ .podSubnetPrefix }}' diff --git a/dev-infrastructure/modules/aks-cluster-base.bicep b/dev-infrastructure/modules/aks-cluster-base.bicep index 69259f0feb..431251e59a 100644 --- a/dev-infrastructure/modules/aks-cluster-base.bicep +++ b/dev-infrastructure/modules/aks-cluster-base.bicep @@ -358,7 +358,7 @@ resource aksCluster 'Microsoft.ContainerService/managedClusters@2024-04-02-previ } ] } - revisions: istioVersion[0] + revisions: istioVersion } } : null