Zoltan Mezei

Results 4 comments of Zoltan Mezei

I'd be interested in this as well. We have a project that starts in production in November 2023 and would like to know what's the best version to start with.

> according to [official docs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Container-Insights-setup-metrics.html) ContainerInsights [is driven by the cloudwatch-agent DaemonSet](https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/latest/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset.yaml), you can now also use this helm chart: https://github.com/aws/eks-charts/tree/master/stable/aws-cloudwatch-metrics This works well for the ContainerInsights metrics, however, it...

The EKS addon definitely helps and it's easy to add to the existing terraform modules, which solves the issue for me. However it is not a Helm chart - some...

Nice catch, and sorry for this mistake. This patch should fix he issue: ``` --- postgresql/provider.go +++ postgresql/provider.go @@ -292,6 +292,7 @@ *roleOutput.Credentials.SecretAccessKey, *roleOutput.Credentials.SessionToken, )), ), + awsConfig.WithRegion(awscfg.Region), ) if...