Skip to content

Commit 068e714

Browse files
pfrcksAmol Agrawal
andauthored
update charts/yamls/releasenotes (#837)
* update charts/yamls/releasenotes * update date Co-authored-by: Amol Agrawal <amagraw@microsoft.com>
1 parent 5df4b16 commit 068e714

File tree

7 files changed

+28
-11
lines changed

7 files changed

+28
-11
lines changed

ReleaseNotes.md

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

1010
## Release History
1111

12-
Note : The agent version(s) below has dates (ciprod<mmddyyyy>), which indicate the agent build dates (not release dates)
12+
Note : The agent version(s) below has dates (ciprod\<mmddyyyy\>), which indicate the agent build dates (not release dates)
13+
14+
### 10/05/2022 -
15+
##### Version microsoft/oms:ciprod10042022-3c05dd1b Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod10042022-3c05dd1b (linux)
16+
##### Version microsoft/oms:win-ciprod10042022-3c05dd1b Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod10042022-3c05dd1b (windows)
17+
##### Code change log
18+
19+
- Common
20+
- Rename resource names from omsagent based to ama-logs based #823
21+
- Chart major version bumped to 3.0.0 (no auto update)
22+
- Change image tag format from ciprod\<mmddyyyy\> to ciprod\<mmddyyyy\>-\<short-commit-id\> where commit-id is the id of the last commit to be included in the release
23+
- Add gatekeeper-system to exlude namespace #833
24+
- flag to ignore proxy settings which are automatically set by arc k8s extension #824
25+
- Added new rule group and rule properties #818
26+
- fix: Update DCR creation to Clusters resource group instead of workspace (ARM Template update) #819
27+
- Support LCM #820
28+
- Bug fixes
29+
- https://github.com/microsoft/Docker-Provider/pull/834
1330

1431
### 08/10/2022 -
1532
##### Version microsoft/oms:ciprod08102022 Version mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod08102022 (linux)

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: 2.9.6
5+
version: 3.0.0
66
kubeVersion: "^1.10.0-0"
77
keywords:
88
- monitoring

charts/azuremonitor-containers/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Azure:
2222
amalogs:
2323
image:
2424
repo: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod"
25-
tag: "ciprod08102022"
26-
tagWindows: "win-ciprod08102022"
25+
tag: "ciprod10042022-3c05dd1b"
26+
tagWindows: "win-ciprod10042022-3c05dd1b"
2727
pullPolicy: IfNotPresent
2828
dockerProviderVersion: "18.0.1-0"
2929
agentVersion: "azure-mdsd-1.17.0"

kubernetes/ama-logs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ spec:
384384
# - NET_ADMIN
385385
# - NET_RAW
386386
- name: ama-logs
387-
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod08102022"
387+
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod10042022-3c05dd1b"
388388
imagePullPolicy: IfNotPresent
389389
resources:
390390
limits:
@@ -473,7 +473,7 @@ spec:
473473
timeoutSeconds: 15
474474
#Only in sidecar scraping mode
475475
- name: ama-logs-prometheus
476-
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod08102022"
476+
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod10042022-3c05dd1b"
477477
imagePullPolicy: IfNotPresent
478478
resources:
479479
limits:
@@ -694,7 +694,7 @@ spec:
694694
# - NET_ADMIN
695695
# - NET_RAW
696696
- name: ama-logs
697-
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod08102022"
697+
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:ciprod10042022-3c05dd1b"
698698
imagePullPolicy: IfNotPresent
699699
# comment resources if VPA configured since the VPA will set these values
700700
resources:
@@ -881,7 +881,7 @@ spec:
881881
value: "3"
882882
containers:
883883
- name: ama-logs-windows
884-
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod08102022"
884+
image: "mcr.microsoft.com/azuremonitor/containerinsights/ciprod:win-ciprod10042022-3c05dd1b"
885885
imagePullPolicy: IfNotPresent
886886
resources:
887887
limits:

kubernetes/linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ENV RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR 0.9
1818
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/*
1919
COPY setup.sh main.sh defaultpromenvvariables defaultpromenvvariables-rs defaultpromenvvariables-sidecar mdsd.xml envmdsd logrotate.conf $tmpdir/
2020

21-
ARG IMAGE_TAG=ciprod08102022
21+
ARG IMAGE_TAG=ciprod10042022-3c05dd1b
2222
ENV AGENT_VERSION ${IMAGE_TAG}
2323

2424
WORKDIR ${tmpdir}

kubernetes/linux/Dockerfile.multiarch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN /usr/bin/apt-get update && /usr/bin/apt-get install -y libc-bin wget openssl
3333
COPY --from=builder /src/kubernetes/linux/Linux_ULINUX_1.0_*_64_Release/docker-cimprov-*.*.*-*.*.sh $tmpdir/
3434
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/
3535

36-
ARG IMAGE_TAG=ciprod08102022
36+
ARG IMAGE_TAG=ciprod10042022-3c05dd1b
3737
ENV AGENT_VERSION ${IMAGE_TAG}
3838

3939
WORKDIR ${tmpdir}

kubernetes/windows/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER OMSContainers@microsoft.com
55
LABEL vendor=Microsoft\ Corp \
66
com.microsoft.product="Azure Monitor for containers"
77

8-
ARG IMAGE_TAG=win-ciprod08102022
8+
ARG IMAGE_TAG=win-ciprod10042022-3c05dd1b
99

1010
# Do not split this into multiple RUN!
1111
# Docker creates a layer for every RUN-Statement

0 commit comments

Comments
 (0)