Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ resource "helm_release" "this" {
{
name = "clusterName"
value = aws_eks_cluster.this.name
},
{
name = "otelContainerInsights.enabled"
value = "true"
}
]
}
Expand All @@ -222,6 +226,9 @@ resource "null_resource" "deployment_wait" {
chmod +x kubectl
./kubectl rollout status daemonset fluent-bit-windows -n amazon-cloudwatch --timeout 1200s
./kubectl rollout status daemonset cloudwatch-agent-windows -n amazon-cloudwatch --timeout 1200s
./kubectl rollout status daemonset node-exporter -n amazon-cloudwatch --timeout 1200s
./kubectl rollout status deployment kube-state-metrics -n amazon-cloudwatch --timeout 1200s
./kubectl rollout status deployment cloudwatch-agent-cluster-scraper -n amazon-cloudwatch --timeout 1200s
EOT
}
}
Expand Down
Loading