Skip to content

Commit 8e96f74

Browse files
bump version to 1.3.9 with new CloudWatch agent release (#87)
1 parent e1d9571 commit 8e96f74

File tree

16 files changed

+27
-24
lines changed

16 files changed

+27
-24
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## k8s/1.3.9
2+
- Upgrade cloudwatch-agent image version to cloudwatch-agent:1.247350.0b251780
3+
- Fixes K8s performance issue in CloudWatch agent in [commit](https://github.com/aws/amazon-cloudwatch-agent/commit/b49543ba62206613c3bb67c52a861b29e26c51a3)
14
## k8s/1.3.8
25
- Disable fluentd watch on kubernetes metadata
36
## k8s/1.3.7

container-insights-manifest-update.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ cd "$(dirname "$0")"
44
k8sDirPrefix="./k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring"
55
ecsDirPrefix="./ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric"
66

7-
newK8sVersion="k8s/1.3.8"
8-
agentVersion="amazon/cloudwatch-agent:1.247348.0b251302"
7+
newK8sVersion="k8s/1.3.9"
8+
agentVersion="amazon/cloudwatch-agent:1.247350.0b251780"
99
fluentdVersion="fluent/fluentd-kubernetes-daemonset:v1.7.3-debian-cloudwatch-1.0"
1010
fluentBitVersion="amazon/aws-for-fluent-bit:2.10.0"
1111

ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cloudformation-quickstart/cwagent-ecs-instance-metric-cfn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"ContainerDefinitions": [
106106
{
107107
"Name": "cloudwatch-agent",
108-
"Image": "amazon/cloudwatch-agent:1.247348.0b251302",
108+
"Image": "amazon/cloudwatch-agent:1.247350.0b251780",
109109
"MountPoints": [
110110
{
111111
"ReadOnly": true,

ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cwagent-ecs-instance-metric.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"containerDefinitions": [
77
{
88
"name": "cloudwatch-agent",
9-
"image": "amazon/cloudwatch-agent:1.247348.0b251302",
9+
"image": "amazon/cloudwatch-agent:1.247350.0b251780",
1010
"mountPoints": [
1111
{
1212
"readOnly": true,

ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-awsvpc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Resources:
224224
NetworkMode: awsvpc
225225
ContainerDefinitions:
226226
- Name: cloudwatch-agent-prometheus
227-
Image: amazon/cloudwatch-agent:1.247348.0b251302
227+
Image: amazon/cloudwatch-agent:1.247350.0b251780
228228
Essential: true
229229
MountPoints: []
230230
PortMappings: []

ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-bridge-host.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Resources:
219219
NetworkMode: !Ref ECSNetworkMode
220220
ContainerDefinitions:
221221
- Name: cloudwatch-agent-prometheus
222-
Image: amazon/cloudwatch-agent:1.247348.0b251302
222+
Image: amazon/cloudwatch-agent:1.247350.0b251780
223223
Essential: true
224224
MountPoints: []
225225
PortMappings: []

ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cwagent-prometheus-task-definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"containerDefinitions": [
77
{
88
"name": "cloudwatch-agent-prometheus",
9-
"image": "amazon/cloudwatch-agent:1.247348.0b251302",
9+
"image": "amazon/cloudwatch-agent:1.247350.0b251780",
1010
"essential": true,
1111
"mountPoints": [
1212
],

k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: cloudwatch-agent
18-
image: amazon/cloudwatch-agent:1.247348.0b251302
18+
image: amazon/cloudwatch-agent:1.247350.0b251780
1919
#ports:
2020
# - containerPort: 8125
2121
# hostPort: 8125
@@ -42,7 +42,7 @@ spec:
4242
fieldRef:
4343
fieldPath: metadata.namespace
4444
- name: CI_VERSION
45-
value: "k8s/1.3.8"
45+
value: "k8s/1.3.9"
4646
# Please don't change the mountPath
4747
volumeMounts:
4848
- name: cwagentconfig

k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-compatible.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ spec:
318318
fieldRef:
319319
fieldPath: spec.nodeName
320320
- name: CI_VERSION
321-
value: "k8s/1.3.8"
321+
value: "k8s/1.3.9"
322322
resources:
323323
limits:
324324
memory: 200Mi

k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ spec:
307307
fieldRef:
308308
fieldPath: spec.nodeName
309309
- name: CI_VERSION
310-
value: "k8s/1.3.8"
310+
value: "k8s/1.3.9"
311311
resources:
312312
limits:
313313
memory: 200Mi

0 commit comments

Comments
 (0)