diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d7d6de6af..394caba09 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -11,6 +11,23 @@ additional questions or comments. Note : The agent version(s) below has dates (ciprod), which indicate the agent build dates (not release dates) +### 06/11/2021 - +##### Version microsoft/oms:ciprod06112021 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06112021 (linux) +##### Version microsoft/oms:win-ciprod06112021 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod06112021 (windows) + - Linux Agent + - Removal of base omsagent dependency + - Using MDSD version 1.10.1 as base agent for all the supported LA data types + - Ruby version upgrade to 2.6 i.e. same version as windows agent + - Upgrade FluentD gem version to 1.12.2 + - All the Ruby Fluentd Plugins upgraded to v1 as per Fluentd guidance + - Windows Agent + - CA cert changes for airgapped clouds + - Send perf metrics to MDM from windows daemonset + - FluentD gem version upgrade from 1.10.2 to 1.12.2 to make same version as Linux Agent + - Doc updates + - README updates related to OSM preview release for Arc K8s + - README updates related to recommended alerts + ### 05/20/2021 - ##### Version microsoft/oms:ciprod05202021 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05202021 (linux) ##### No Windows changes with this release, win-ciprod04222021 still current. diff --git a/build/version b/build/version index d70d1f9bc..95d20e931 100644 --- a/build/version +++ b/build/version @@ -2,11 +2,11 @@ # Build Version Information -CONTAINER_BUILDVERSION_MAJOR=15 -CONTAINER_BUILDVERSION_MINOR=2 +CONTAINER_BUILDVERSION_MAJOR=16 +CONTAINER_BUILDVERSION_MINOR=0 CONTAINER_BUILDVERSION_PATCH=0 CONTAINER_BUILDVERSION_BUILDNR=0 -CONTAINER_BUILDVERSION_DATE=20210512 +CONTAINER_BUILDVERSION_DATE=20210611 CONTAINER_BUILDVERSION_STATUS=Developer_Build #-------------------------------- End of File ----------------------------------- diff --git a/kubernetes/linux/Dockerfile b/kubernetes/linux/Dockerfile index 3ad3cd315..1ae7bef61 100644 --- a/kubernetes/linux/Dockerfile +++ b/kubernetes/linux/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:18.04 MAINTAINER OMSContainers@microsoft.com LABEL vendor=Microsoft\ Corp \ com.microsoft.product="Azure Monitor for containers" -ARG IMAGE_TAG=ciprod05202021 +ARG IMAGE_TAG=ciprod06112021 ENV AGENT_VERSION ${IMAGE_TAG} ENV tmpdir /opt ENV APPLICATIONINSIGHTS_AUTH NzAwZGM5OGYtYTdhZC00NThkLWI5NWMtMjA3ZjM3NmM3YmRi diff --git a/kubernetes/omsagent.yaml b/kubernetes/omsagent.yaml index 4290e1d59..617c81f38 100644 --- a/kubernetes/omsagent.yaml +++ b/kubernetes/omsagent.yaml @@ -358,7 +358,7 @@ spec: tier: node annotations: agentVersion: "1.10.0.1" - dockerProviderVersion: "15.2.0-0" + dockerProviderVersion: "16.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent @@ -368,7 +368,7 @@ spec: value: "3" containers: - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05202021" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06112021" imagePullPolicy: IfNotPresent resources: limits: @@ -446,7 +446,7 @@ spec: timeoutSeconds: 15 #Only in sidecar scraping mode - name: omsagent-prometheus - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05202021" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06112021" imagePullPolicy: IfNotPresent resources: limits: @@ -583,13 +583,13 @@ spec: rsName: "omsagent-rs" annotations: agentVersion: "1.10.0.1" - dockerProviderVersion: "15.2.0-0" + dockerProviderVersion: "16.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent containers: - name: omsagent - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod05202021" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod06112021" imagePullPolicy: IfNotPresent resources: limits: @@ -750,7 +750,7 @@ spec: tier: node-win annotations: agentVersion: "1.10.0.1" - dockerProviderVersion: "15.0.0-0" + dockerProviderVersion: "16.0.0-0" schema-versions: "v1" spec: serviceAccountName: omsagent @@ -760,7 +760,7 @@ spec: value: "3" containers: - name: omsagent-win - image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod04222021" + image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod06112021" imagePullPolicy: IfNotPresent resources: limits: diff --git a/kubernetes/windows/Dockerfile b/kubernetes/windows/Dockerfile index 5a5298d0b..997b2f310 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-ciprod04222021 +ARG IMAGE_TAG=win-ciprod06112021 # Do not split this into multiple RUN! # Docker creates a layer for every RUN-Statement