diff --git a/ReleaseNotes.md b/ReleaseNotes.md index e070c151c1..d0e5bad229 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -11,16 +11,28 @@ additional questions or comments. Note : The agent version(s) below has dates (ciprod), which indicate the agent build dates (not release dates) -### 3/11/2022 - -##### Version microsoft/oms:ciprod03112022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03112022 (linux) -##### Version microsoft/oms:win-ciprod03112022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod03112022 (windows) +### 3/17/2022 - +##### Version microsoft/oms:ciprod03172022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03172022 (linux) +##### Version microsoft/oms:win-ciprod03172022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod03172022 (windows) ##### Code change log - Linux Agent + - Multi-Arch Image to support both AMD64 and ARM64 + - Ruby upgraded to version 2.7 from 2.6 + - Fix Telegraf Permissions + - Fix ADX bug with database name - Vulnerability fixes + - MDSD updated to 1.17.0 + - HTTP Proxy support + - Retries for Log Analytics Ingestion + - ARM64 support + - Memory leak fixes for network failure scenario - Windows Agent - Bug fix for FluentBit stdout and stderr log filtering - Common - - Upgrade Go lang version from 1.14.1 to 1.15.14 + - Upgrade Go lang version from 1.14.1 to 1.15.14 + - MSI onboarding ARM template update + - AKS HTTP Proxy support + - Go packages upgrade to address vulnerabilities ### 1/31/2022 - ##### Version microsoft/oms:ciprod01312022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod01312022 (linux) diff --git a/charts/azuremonitor-containers/values.yaml b/charts/azuremonitor-containers/values.yaml index b47416bc1e..4460f77566 100644 --- a/charts/azuremonitor-containers/values.yaml +++ b/charts/azuremonitor-containers/values.yaml @@ -21,8 +21,8 @@ Azure: omsagent: image: repo: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod" - tag: "ciprod03112022" - tagWindows: "win-ciprod03112022" + tag: "ciprod03172022" + tagWindows: "win-ciprod03172022" pullPolicy: IfNotPresent dockerProviderVersion: "16.0.0-0" agentVersion: "azure-mdsd-1.17.0" diff --git a/kubernetes/linux/Dockerfile b/kubernetes/linux/Dockerfile index bace8d45e2..becbe1157d 100644 --- a/kubernetes/linux/Dockerfile +++ b/kubernetes/linux/Dockerfile @@ -17,7 +17,7 @@ ENV RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR 0.9 RUN /usr/bin/apt-get update && /usr/bin/apt-get install -y libc-bin wget openssl curl sudo python-ctypes init-system-helpers net-tools rsyslog cron vim dmidecode apt-transport-https gnupg && rm -rf /var/lib/apt/lists/* COPY setup.sh main.sh defaultpromenvvariables defaultpromenvvariables-rs defaultpromenvvariables-sidecar mdsd.xml envmdsd logrotate.conf $tmpdir/ -ARG IMAGE_TAG=ciprod03112022 +ARG IMAGE_TAG=ciprod03172022 ENV AGENT_VERSION ${IMAGE_TAG} WORKDIR ${tmpdir} diff --git a/kubernetes/linux/Dockerfile.multiarch b/kubernetes/linux/Dockerfile.multiarch index 180a9e11c7..df8b04d191 100644 --- a/kubernetes/linux/Dockerfile.multiarch +++ b/kubernetes/linux/Dockerfile.multiarch @@ -29,7 +29,7 @@ RUN /usr/bin/apt-get update && /usr/bin/apt-get install -y libc-bin wget openssl COPY --from=builder /src/kubernetes/linux/Linux_ULINUX_1.0_*_64_Release/docker-cimprov-*.*.*-*.*.sh $tmpdir/ COPY kubernetes/linux/setup.sh kubernetes/linux/main.sh kubernetes/linux/defaultpromenvvariables kubernetes/linux/defaultpromenvvariables-rs kubernetes/linux/defaultpromenvvariables-sidecar kubernetes/linux/mdsd.xml kubernetes/linux/envmdsd kubernetes/linux/logrotate.conf $tmpdir/ -ARG IMAGE_TAG=ciprod03112022 +ARG IMAGE_TAG=ciprod03172022 ENV AGENT_VERSION ${IMAGE_TAG} WORKDIR ${tmpdir} diff --git a/kubernetes/omsagent.yaml b/kubernetes/omsagent.yaml index 49df045b90..c8324370bf 100644 --- a/kubernetes/omsagent.yaml +++ b/kubernetes/omsagent.yaml @@ -368,7 +368,7 @@ spec: value: "3" containers: - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03112022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03172022" imagePullPolicy: IfNotPresent resources: limits: @@ -454,7 +454,7 @@ spec: timeoutSeconds: 15 #Only in sidecar scraping mode - name: omsagent-prometheus - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod01312022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03172022" imagePullPolicy: IfNotPresent resources: limits: @@ -603,7 +603,7 @@ spec: serviceAccountName: omsagent containers: - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03112022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod03172022" imagePullPolicy: IfNotPresent resources: limits: @@ -776,7 +776,7 @@ spec: value: "3" containers: - name: omsagent-win - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod03112022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod03172022" imagePullPolicy: IfNotPresent resources: limits: diff --git a/kubernetes/windows/Dockerfile b/kubernetes/windows/Dockerfile index ef3b1140d7..3aa4054e1c 100644 --- a/kubernetes/windows/Dockerfile +++ b/kubernetes/windows/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER OMSContainers@microsoft.com LABEL vendor=Microsoft\ Corp \ com.microsoft.product="Azure Monitor for containers" -ARG IMAGE_TAG=win-ciprod03112022 +ARG IMAGE_TAG=win-ciprod03172022 # Do not split this into multiple RUN! # Docker creates a layer for every RUN-Statement