Skip to content

Commit

Permalink
update to include operator
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 17, 2026
1 parent 57577bf commit 5d69bfc
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
13 changes: 13 additions & 0 deletions examples/extras/datadog-agent/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
15 changes: 13 additions & 2 deletions examples/extras/datadog-agent/variables.images.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -107,6 +118,7 @@ images = {
source_tag = null
# tag = "0.37.0"
# tag = "0.47.0"
# tag = "0.68.2"
tag = "0"
enabled = true
}
Expand All @@ -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

0 comments on commit 5d69bfc

Please sign in to comment.