Skip to content

Commit 9394619

Browse files
[create-pull-request] automated change
1 parent 7379951 commit 9394619

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

addons/aws-cloudwatch-metrics/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: aws-cloudwatch-metrics
33
description: A Helm chart to deploy aws-cloudwatch-metrics project
4-
version: 0.0.9
5-
appVersion: "1.247350"
4+
version: 0.0.11
5+
appVersion: "1.300032.2b361"
66
home: https://github.com/aws/eks-charts
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

addons/aws-cloudwatch-metrics/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ helm upgrade --install aws-cloudwatch-metrics \
2626
| `image.tag` | Image tag to deploy | `1.247345.36b249270`
2727
| `image.pullPolicy` | Pull policy for the image | `IfNotPresent` | ✔
2828
| `clusterName` | Name of your cluster | `cluster_name` | ✔
29+
| `enhancedContainerInsights` | EKS cluster with enhanced monitoring | `true` |
2930
| `serviceAccount.create` | Whether a new service account should be created | `true` |
3031
| `serviceAccount.name` | Service account to be used | |
3132
| `hostNetwork` | Allow to use the network namespace and network resources of the node | `false` |

addons/aws-cloudwatch-metrics/templates/clusterrole.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rules:
77
resources: ["pods", "nodes", "endpoints"]
88
verbs: ["list", "watch"]
99
- apiGroups: ["apps"]
10-
resources: ["replicasets"]
10+
resources: ["replicasets", "daemonsets", "deployments", "statefulsets"]
1111
verbs: ["list", "watch"]
1212
- apiGroups: ["batch"]
1313
resources: ["jobs"]

addons/aws-cloudwatch-metrics/templates/configmap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ data:
1111
"metrics_collected": {
1212
"kubernetes": {
1313
"cluster_name": "{{ .Values.clusterName }}",
14+
"enhanced_container_insights": {{ .Values.enhancedContainerInsights.enabled }},
1415
"metrics_collection_interval": 60
1516
}
1617
},

addons/aws-cloudwatch-metrics/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
image:
22
repository: amazon/cloudwatch-agent
3-
tag: 1.247350.0b251780
3+
tag: 1.300032.2b361
44
pullPolicy: IfNotPresent
55

66
clusterName: cluster_name
77

8+
enhancedContainerInsights:
9+
enabled: true
10+
811
resources:
912
limits:
1013
cpu: 200m

0 commit comments

Comments
 (0)