From 285c4e3d03d8bb299bc01c0388373eb9b2249c46 Mon Sep 17 00:00:00 2001 From: Ganga Mahesh Siddem Date: Tue, 14 Jun 2022 13:19:52 -0700 Subject: [PATCH] changes related to june 2022 release --- ReleaseNotes.md | 17 ++++++++++++++++- build/version | 4 ++-- charts/azuremonitor-containers/Chart.yaml | 2 +- charts/azuremonitor-containers/values.yaml | 6 +++--- kubernetes/linux/Dockerfile | 2 +- kubernetes/linux/Dockerfile.multiarch | 2 +- kubernetes/omsagent.yaml | 14 +++++++------- kubernetes/windows/Dockerfile | 2 +- 8 files changed, 32 insertions(+), 17 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 176cbc2b8..fb992f09c 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -11,6 +11,21 @@ additional questions or comments. Note : The agent version(s) below has dates (ciprod), which indicate the agent build dates (not release dates) +### 6/14/2022 - +##### Version microsoft/oms:ciprod06142022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06142022 (linux) +##### Version microsoft/oms:win-ciprod06142022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod06142022 (windows) +##### Code change log +- Linux Agent + - Prometheus sidecar memory optimization + - Fix for issue of Telegraf connecting to FluentD Port 25228 during container startup + - Add integration for collecting Subnets IP usage metrics for Azure CNI (turned OFF by default) + - Replicaset Agent improvements related to supporting of 5K Node cluster scale +- Common (Linux & Windows Agent) + - Make custom metrics endpoint configurable to support edge environments +- Misc + - Moved Trivy image scan to Azure Pipeline + + ### 5/19/2022 - ##### Version microsoft/oms:ciprod05192022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05192022 (linux) ##### Version microsoft/oms:win-ciprod05192022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod05192022 (windows) @@ -19,7 +34,7 @@ Note : The agent version(s) below has dates (ciprod), which indicate t - PodReadyPercentage metric bug fix - add cifs & fuse file systems to ignore list - CA Cert Fix for Mariner Hosts in Air Gap - - Disk usage metrics will no longer be collected for the paths "/mnt/containers" and "/mnt/docker" + - Disk usage metrics will no longer be collected for the paths "/mnt/containers" and "/mnt/docker" - Windows Agent - Ruby version upgrade from 2.6.5.1 to 2.7.5.1 - Added Support for Windows Server 2022 diff --git a/build/version b/build/version index 19787cb72..dcbea0179 100644 --- a/build/version +++ b/build/version @@ -2,11 +2,11 @@ # Build Version Information -CONTAINER_BUILDVERSION_MAJOR=17 +CONTAINER_BUILDVERSION_MAJOR=18 CONTAINER_BUILDVERSION_MINOR=0 CONTAINER_BUILDVERSION_PATCH=0 CONTAINER_BUILDVERSION_BUILDNR=0 -CONTAINER_BUILDVERSION_DATE=20220519 +CONTAINER_BUILDVERSION_DATE=20220614 CONTAINER_BUILDVERSION_STATUS=Developer_Build #-------------------------------- End of File ----------------------------------- diff --git a/charts/azuremonitor-containers/Chart.yaml b/charts/azuremonitor-containers/Chart.yaml index 8e9f4847f..a8268d63d 100644 --- a/charts/azuremonitor-containers/Chart.yaml +++ b/charts/azuremonitor-containers/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 7.0.0-1 description: Helm chart for deploying Azure Monitor container monitoring agent in Kubernetes name: azuremonitor-containers -version: 2.9.3 +version: 2.9.4 kubeVersion: "^1.10.0-0" keywords: - monitoring diff --git a/charts/azuremonitor-containers/values.yaml b/charts/azuremonitor-containers/values.yaml index 91b8270cd..64f48212b 100644 --- a/charts/azuremonitor-containers/values.yaml +++ b/charts/azuremonitor-containers/values.yaml @@ -22,10 +22,10 @@ Azure: omsagent: image: repo: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod" - tag: "ciprod05192022" - tagWindows: "win-ciprod05192022" + tag: "ciprod06142022" + tagWindows: "win-ciprod06142022" pullPolicy: IfNotPresent - dockerProviderVersion: "17.0.0-0" + dockerProviderVersion: "18.0.0-0" agentVersion: "azure-mdsd-1.17.0" winAgentVersion: "0.0.0-0" # there is no base agent version for windows agent diff --git a/kubernetes/linux/Dockerfile b/kubernetes/linux/Dockerfile index 6f68f664e..af1cab3d9 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=ciprod05192022 +ARG IMAGE_TAG=ciprod06142022 ENV AGENT_VERSION ${IMAGE_TAG} WORKDIR ${tmpdir} diff --git a/kubernetes/linux/Dockerfile.multiarch b/kubernetes/linux/Dockerfile.multiarch index fd0330d5d..ad177d8f0 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=ciprod05192022 +ARG IMAGE_TAG=ciprod06142022 ENV AGENT_VERSION ${IMAGE_TAG} WORKDIR ${tmpdir} diff --git a/kubernetes/omsagent.yaml b/kubernetes/omsagent.yaml index d2d7a0c87..bb83f6faf 100644 --- a/kubernetes/omsagent.yaml +++ b/kubernetes/omsagent.yaml @@ -334,7 +334,7 @@ spec: tier: node annotations: agentVersion: "azure-mdsd-1.17.0" - dockerProviderVersion: "17.0.0-0" + dockerProviderVersion: "18.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent @@ -379,7 +379,7 @@ spec: # - NET_ADMIN # - NET_RAW - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05192022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06142022" imagePullPolicy: IfNotPresent resources: limits: @@ -468,7 +468,7 @@ spec: timeoutSeconds: 15 #Only in sidecar scraping mode - name: omsagent-prometheus - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05192022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06142022" imagePullPolicy: IfNotPresent resources: limits: @@ -612,7 +612,7 @@ spec: rsName: "omsagent-rs" annotations: agentVersion: "azure-mdsd-1.17.0" - dockerProviderVersion: "17.0.0-0" + dockerProviderVersion: "18.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent @@ -653,7 +653,7 @@ spec: # - NET_ADMIN # - NET_RAW - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05192022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06142022" imagePullPolicy: IfNotPresent resources: limits: @@ -821,7 +821,7 @@ spec: tier: node-win annotations: agentVersion: "0.0.0-0" - dockerProviderVersion: "17.0.0-0" + dockerProviderVersion: "18.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent @@ -831,7 +831,7 @@ spec: value: "3" containers: - name: omsagent-win - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod05192022" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod06142022" imagePullPolicy: IfNotPresent resources: limits: diff --git a/kubernetes/windows/Dockerfile b/kubernetes/windows/Dockerfile index 383652e0e..3b663132e 100644 --- a/kubernetes/windows/Dockerfile +++ b/kubernetes/windows/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER OMSContainers@microsoft.com LABEL vendor=Microsoft\ Corp \ com.microsoft.product="Azure Monitor for containers" -ARG IMAGE_TAG=win-ciprod05192022 +ARG IMAGE_TAG=win-ciprod06142022 # Do not split this into multiple RUN! # Docker creates a layer for every RUN-Statement