Skip to content

Commit fd2aa52

Browse files
authored
Release ciprod 3.1.5 (#934)
* revert back the telegraf version for windows to 1.24.2 * remove space * add trivignore * update charts/yamls/releasenotes * releasing 3.1.5 for windows only
1 parent 084471e commit fd2aa52

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

ReleaseNotes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,14 @@ additional questions or comments.
99

1010
## Release History
1111

12-
Note: Starting 03/01/2023 we have moved to the semver versioning system for naming image tags with the release 3.1.4
12+
### 03/21/2023 -
13+
##### Version microsoft/oms:3.1.4 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:3.1.4 (linux)
14+
##### Version microsoft/oms:win-3.1.5 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-3.1.5 (windows)
15+
##### Code change log
16+
- Windows Agent
17+
- Downgrade telegraf to version 1.24.2 due to Telegraf Data Collector Service error
1318

19+
Note: Starting 03/01/2023 we have moved to the semver versioning system for naming image tags with the release 3.1.4
1420
### 03/01/2023 -
1521
##### Version microsoft/oms:3.1.4 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:3.1.4 (linux)
1622
##### Version microsoft/oms:win-3.1.4 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-3.1.4 (windows)

charts/azuremonitor-containers/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: 7.0.0-1
33
description: Helm chart for deploying Azure Monitor container monitoring agent in Kubernetes
44
name: azuremonitor-containers
5-
version: 3.1.4
5+
version: 3.1.5
66
kubeVersion: "^1.10.0-0"
77
keywords:
88
- monitoring

charts/azuremonitor-containers/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ amalogs:
2525
image:
2626
repo: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod"
2727
tag: "3.1.4"
28-
tagWindows: "win-3.1.4"
28+
tagWindows: "win-3.1.5"
2929
pullPolicy: IfNotPresent
3030
dockerProviderVersion: "18.0.1-0"
3131
agentVersion: "azure-mdsd-1.17.0"

kubernetes/ama-logs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ spec:
900900
value: "3"
901901
containers:
902902
- name: ama-logs-windows
903-
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-3.1.4"
903+
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-3.1.5"
904904
imagePullPolicy: IfNotPresent
905905
resources:
906906
limits:

kubernetes/windows/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ COPY ./amalogswindows/installer/scripts/rubyKeepCertificateAlive/*.rb /etc/fluen
7575
#Copy fluentd ruby plugins
7676
COPY ./amalogswindows/ruby/ /etc/fluent/plugin/
7777

78-
# default value will be overwritten by pipeline
79-
ARG IMAGE_TAG=win-3.1.4
78+
# default value will be overwritten by pipeline
79+
ARG IMAGE_TAG=win-3.1.5
8080
ENV AGENT_VERSION ${IMAGE_TAG}
8181

8282
ENV OS_TYPE "windows"

kubernetes/windows/setup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Write-Host ('Finished Installing Fluentbit')
3838

3939
Write-Host ('Installing Telegraf');
4040
try {
41-
$telegrafUri='https://dl.influxdata.com/telegraf/releases/telegraf-1.25.2_windows_amd64.zip'
41+
$telegrafUri='https://dl.influxdata.com/telegraf/releases/telegraf-1.24.2_windows_amd64.zip'
4242
Invoke-WebRequest -Uri $telegrafUri -OutFile /installation/telegraf.zip
4343
Expand-Archive -Path /installation/telegraf.zip -Destination /installation/telegraf
4444
Move-Item -Path /installation/telegraf/*/* -Destination /opt/telegraf/ -ErrorAction SilentlyContinue

0 commit comments

Comments
 (0)