Skip to content

Commit

Permalink
[aws-cloudwatch-metrics] fix: update enhanced_container_insights te…
Browse files Browse the repository at this point in the history
…mplate from string to boolean (#1062)

* fix: use boolean instead of string enhanced_container_insights

* [aws-cloudwatch-metrics] fix: update enhanced_container_insights template from string to boolean

---------

Co-authored-by: Andrew Gorman <[email protected]>
  • Loading branch information
kangadrewie and Andrew Gorman authored Mar 12, 2024
1 parent dde5720 commit 2c26551
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/aws-cloudwatch-metrics/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: aws-cloudwatch-metrics
description: A Helm chart to deploy aws-cloudwatch-metrics project
version: 0.0.10
version: 0.0.11
appVersion: "1.300032.2b361"
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Expand Down
2 changes: 1 addition & 1 deletion stable/aws-cloudwatch-metrics/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
"metrics_collected": {
"kubernetes": {
"cluster_name": "{{ .Values.clusterName }}",
"enhanced_container_insights": "{{ .Values.enhancedContainerInsights.enabled }}",
"enhanced_container_insights": {{ .Values.enhancedContainerInsights.enabled }},
"metrics_collection_interval": 60
}
},
Expand Down

0 comments on commit 2c26551

Please sign in to comment.