Skip to content

Commit

Permalink
[ASCII-2734] remove redundant build tags from process agent (#33528)
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoCaso authored Jan 30, 2025
1 parent 77e59ac commit ebb2e67
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions tasks/build_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,25 +126,30 @@
INSTALLER_TAGS = {"docker", "ec2", "kubelet"}

# PROCESS_AGENT_TAGS lists the tags necessary to build the process-agent
PROCESS_AGENT_TAGS = AGENT_TAGS.union({"fargateprocess"}).difference({"otlp", "python", "trivy"})
PROCESS_AGENT_TAGS = {
"containerd",
"no_dynamic_plugins",
"cri",
"crio",
"datadog.no_waf",
"ec2",
"docker",
"fargateprocess",
"kubelet",
"netcgo",
"podman",
"zlib",
"zstd",
}

# PROCESS_AGENT_HEROKU_TAGS lists the tags necessary to build the process-agent for Heroku
PROCESS_AGENT_HEROKU_TAGS = PROCESS_AGENT_TAGS.difference(
{
"containerd",
"no_dynamic_plugins",
"cri",
"crio",
"docker",
"ec2",
"jetson",
"kubeapiserver",
"kubelet",
"orchestrator",
"podman",
"systemd",
}
)
PROCESS_AGENT_HEROKU_TAGS = {
"datadog.no_waf",
"fargateprocess",
"netcgo",
"zlib",
"zstd",
}

# SECURITY_AGENT_TAGS lists the tags necessary to build the security agent
SECURITY_AGENT_TAGS = {
Expand Down

0 comments on commit ebb2e67

Please sign in to comment.