Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AKS version bump 1.28.5 #688

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/regressionparams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
env:
RG: "AksBicepAcc-Ci-HelperValidate" #The resource group we're deploying to.
ParamDir: ".github/workflows_dep/regressionparams/" #Path to parameter file
AZCLIVERSION: 2.53.0 #2.43.0 #2.34.1 #2.29.2 #2.26.0 #latest
AZCLIVERSION: 2.58.0 #2.53.0 #2.43.0 #2.34.1 #2.29.2 #2.26.0 #latest

jobs:
GetParamFiles:
Expand Down Expand Up @@ -122,15 +122,15 @@ jobs:
$params | ConvertTo-Json -Depth 4 | Out-File "${{ env.ParamDir }}${{ matrix.files }}"

- name: Azure Login
uses: Azure/login@v1.4.6
uses: Azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
enable-AzPSSession: false
environment: azurecloud
allow-no-subscriptions: false

- name: Validate Infrastructure deployment
uses: Azure/cli@v1.0.7
uses: Azure/cli@v2
with:
azcliversion: ${{ env.AZCLIVERSION }}
inlineScript: |
Expand All @@ -140,7 +140,7 @@ jobs:
- name: WhatIf Infrastructure deployment
if: steps.paramfile.outputs.DOPSRULE == 'true'
continue-on-error: ${{ secrets.ISAZCLIWHATIFUNRELIABLE == 'true' }}
uses: Azure/cli@v1.0.7
uses: Azure/cli@v2
with:
azcliversion: ${{ env.AZCLIVERSION }}
inlineScript: |
Expand Down
4 changes: 2 additions & 2 deletions bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ output ApplicationGatewayName string = deployAppGw ? appgw.name : ''
param dnsPrefix string = '${resourceName}-dns'

@description('Kubernetes Version')
param kubernetesVersion string = '1.27.7'
param kubernetesVersion string = '1.28.5'

@description('Enable Azure AD integration on AKS')
param enable_aad bool = false
Expand Down Expand Up @@ -1110,7 +1110,7 @@ param serviceMeshProfile string = ''

@description('The ingress gateway to use for the Istio service mesh')
param istioIngressGatewayMode string = ''
param istioRevision string = 'asm-1-17'
param istioRevision string = 'asm-1-20'

var serviceMeshProfileObj = {
istio: {
Expand Down
2 changes: 1 addition & 1 deletion helper/src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"deploy": {
"enableTelemetry": true,
"managedNodeResourceGroup": "",
"kubernetesVersion": "1.27.7",
"kubernetesVersion": "1.28.5",
"location": "WestEurope",
"apiips": "",
"demoapp": false,
Expand Down
2 changes: 1 addition & 1 deletion samples/SampleAppMain.json
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@
},
"kubernetesVersion": {
"type": "string",
"defaultValue": "1.27.7",
"defaultValue": "1.28.5",
"metadata": {
"description": "Kubernetes Version"
}
Expand Down
2 changes: 1 addition & 1 deletion samples/SystemPresetExample.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@
},
"kubernetesVersion": {
"type": "string",
"defaultValue": "1.27.7",
"defaultValue": "1.28.5",
"metadata": {
"description": "Kubernetes Version"
}
Expand Down
2 changes: 1 addition & 1 deletion samples/shared-acr/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@
},
"kubernetesVersion": {
"type": "string",
"defaultValue": "1.27.7",
"defaultValue": "1.28.5",
"metadata": {
"description": "Kubernetes Version"
}
Expand Down
Loading