Successfully installed the Datadog agent into our ...
# kubernetes
l
Successfully installed the Datadog agent into our cluster but now am trying to figure out how to install the Istio integration. Stuck on the configuration step and how to do that via Pulumi on the Datadog agent Helm chart config https://docs.datadoghq.com/integrations/istio/#configuration Anybody successfully done this?
g
We use terraform to deploy our datadog into our cluster, but it should be the same: ``````
Copy code
set {
    name = "datadog.confd.istio\\.yaml"
    value = <<EOF
init_config:
instances:
  - istiod_endpoint: <http://istiod-default.istio-system:15014/metrics>
EOF
  }
this sets a helm var for the chart to write the istio config
l
Thanks!