File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 Golang-Tests :
1414 runs-on : ubuntu-latest
1515 steps :
16- - name : Setup Go 1.23.5
16+ - name : Setup Go 1.23.8
1717 uses : actions/setup-go@v4
1818 with :
19- go-version : ' 1.23.5 '
19+ go-version : ' 1.23.8 '
2020 - name : Check out repository code
2121 uses : actions/checkout@v2
2222 - name : Run unit tests
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ additional questions or comments.
1313##### Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod: win-3 .1.27 (windows)
1414- Linux
1515 - [ cbl-mariner 2.0.20250429] ( https://github.com/microsoft/azurelinux/releases/tag/2.0.20250429-2.0 )
16- - Golang - 1.23.5
16+ - Golang - 1.23.8
1717 - Ruby - 3.1.3
18- - MDSD - 1.31.4
18+ - MDSD - 1.35.1
1919 - Telegraf - 1.34.3
2020 - Fluent-bit - 3.0.6
2121 - Fluentd - 1.16.3
2222- Windows
23- - Golang - 1.23.5
23+ - Golang - 1.23.8
2424 - Ruby - 3.1.1
2525 - Windows AMA - 46.17.2
2626 - Telegraf - 1.24.2
@@ -29,9 +29,7 @@ additional questions or comments.
2929##### Code change log
3030## What's Changed
3131- Common
32- * Update ARM template parameter check for enableRetinaNetworkFlags @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1421
3332 * Fix CVEs though updating go packages and ruby gem @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1414
34- * retina networkflow logs @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1372
3533 * Update managed cluster api versions @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1419
3634 * Fixed token refresh issue @suyadav1 https://github.com/microsoft/Docker-Provider/pull/1409
3735 * add a note that local computer build is broken in README @zanejohnson-azure https://github.com/microsoft/Docker-Provider/pull/1401
@@ -46,6 +44,8 @@ additional questions or comments.
4644 * Test automation: added tests for LA data flow @suyadav1 https://github.com/microsoft/Docker-Provider/pull/1366
4745 * multi-tenancy public preview configmap updates @ganga1980 https://github.com/microsoft/Docker-Provider/pull/1367
4846- Linux
47+ * Update ARM template parameter check for enableRetinaNetworkFlags @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1421
48+ * retina networkflow logs @wanlonghenry https://github.com/microsoft/Docker-Provider/pull/1372
4949 * Upgrade Telegraf 1.34.3 by@suyadav1 in https://github.com/microsoft/Docker-Provider/pull/1434
5050 * Upgrade Telegraf version to latest dalec build @suyadav1 https://github.com/microsoft/Docker-Provider/pull/1420
5151 * azure mdsd 1.35.1 update @ganga1980 https://github.com/microsoft/Docker-Provider/pull/1415
Original file line number Diff line number Diff line change @@ -343,7 +343,7 @@ spec:
343343 component : ama-logs-agent
344344 tier : node
345345 annotations :
346- agentVersion : " azure-mdsd-1.31.4 "
346+ agentVersion : " azure-mdsd-1.35.1 "
347347 dockerProviderVersion : " 18.0.1-0"
348348 schema-versions : " v1"
349349 kubernetes.azure.com/no-http-proxy-vars : " true"
@@ -786,7 +786,7 @@ spec:
786786# labels:
787787# rsName: "ama-logs-multitenancy"
788788# annotations:
789- # agentVersion: "azure-mdsd-1.31.4 "
789+ # agentVersion: "azure-mdsd-1.35.1 "
790790# dockerProviderVersion: "18.0.1-0"
791791# schema-versions: "v1"
792792# kubernetes.azure.com/no-http-proxy-vars: "true"
@@ -959,7 +959,7 @@ spec:
959959 labels :
960960 rsName : " ama-logs-rs"
961961 annotations :
962- agentVersion : " azure-mdsd-1.31.4 "
962+ agentVersion : " azure-mdsd-1.35.1 "
963963 dockerProviderVersion : " 18.0.1-0"
964964 schema-versions : " v1"
965965 kubernetes.azure.com/no-http-proxy-vars : " true"
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ function Install-Go {
1313 exit 1
1414 }
1515
16- $url = " https://go.dev/dl/go1.23.5 .windows-amd64.msi"
17- $output = Join-Path - Path $tempGo - ChildPath " go1.23.5 .windows-amd64.msi"
16+ $url = " https://go.dev/dl/go1.23.8 .windows-amd64.msi"
17+ $output = Join-Path - Path $tempGo - ChildPath " go1.23.8 .windows-amd64.msi"
1818 Write-Host (" downloading go msi into directory path : " + $output + " ..." )
1919 Invoke-WebRequest - Uri $url - OutFile $output - ErrorAction Stop
2020 Write-Host (" downloading of go msi into directory path : " + $output + " completed" )
@@ -155,7 +155,7 @@ function Install-cmetrics() {
155155# https://stackoverflow.com/questions/28682642/powershell-why-is-using-invoke-webrequest-much-slower-than-a-browser-download
156156$ProgressPreference = ' SilentlyContinue'
157157
158- Write-Host " Install GO 1.23.5 version"
158+ Write-Host " Install GO 1.23.8 version"
159159Install-Go
160160Write-Host " Install Build dependencies"
161161Build-Dependencies
You can’t perform that action at this time.
0 commit comments