https://pulumi.com logo
Title
l

loud-battery-37784

10/22/2020, 3:02 PM
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

gorgeous-animal-95046

10/22/2020, 5:38 PM
We use terraform to deploy our datadog into our cluster, but it should be the same: ``````
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

loud-battery-37784

10/22/2020, 5:44 PM
Thanks!