diff --git a/examples/extras/datadog-agent/main.tf b/examples/extras/datadog-agent/main.tf index 241563a..6155def 100644 --- a/examples/extras/datadog-agent/main.tf +++ b/examples/extras/datadog-agent/main.tf @@ -109,6 +109,19 @@ resource "helm_release" "datadog" { name = "agents.image.tag" value = local.images_output["datadog/agent"].tag }, + # { + # name = "datadog-operator.image.doNotPrefixWithGlobalRegistry" + # value = "true" + # }, + { + name = "operator.image.repository" + # value = dirname(split(":", local.images_output["datadog/operator"].dest_full_path)[0]) + value = format("%v/%v", local.images_output["datadog/operator"].dest_registry, local.images_output["datadog/operator"].dest_repository) + }, + { + name = "operator.image.tag" + value = local.images_output["datadog/operator"].tag + }, # { # name = "fips.image.repository" # value = split(":", local.images_output["datadog/fips-proxy"].dest_full_path)[0] diff --git a/examples/extras/datadog-agent/variables.images.auto.tfvars b/examples/extras/datadog-agent/variables.images.auto.tfvars index 2ac6db7..c81a1f2 100644 --- a/examples/extras/datadog-agent/variables.images.auto.tfvars +++ b/examples/extras/datadog-agent/variables.images.auto.tfvars @@ -11,7 +11,8 @@ charts = { # version = "3.90.2" # version = "3.110.10" # version = "3.135.4" - version = "3.201.7" + # version = "3.201.7" + version = "3.205.0" use_remote = true } } @@ -50,6 +51,16 @@ images = { tag = "7.78.0" enabled = true } + "operator" = { + name = "datadog/operator" + image = "public.ecr.aws/datadog/ioperator" + dest_path = null + source_registry = "public.ecr.aws" + source_image = "datadog/operator" + source_tag = null + tag = "1.25.0" + enabled = true + } "fips-proxy" = { name = "datadog/fips-proxy" image = "public.ecr.aws/datadog/fips-proxy" @@ -107,6 +118,7 @@ images = { source_tag = null # tag = "0.37.0" # tag = "0.47.0" + # tag = "0.68.2" tag = "0" enabled = true } @@ -118,4 +130,3 @@ images = { #public.ecr.aws/datadog/dd-lib-java-init:1.48.1 #public.ecr.aws/datadog/dd-lib-python-init:v3.4.1 #public.ecr.aws/datadog/apm-inject:0.37.0 -