Skip to content

Commit 8147ffc

Browse files
authored
[OTEL] e2e tests should use the full images for testing (#1505)
1 parent 9c74773 commit 8147ffc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/datadog/agent/docker_image.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const (
1515
defaultAgentImageTag = "latest"
1616
defaultAgent6ImageTag = "6"
1717
defaultDevAgentImageRepo = "datadog/agent-dev" // Used as default repository for images that are not stable and released yet, should not be used in the CI
18-
defaultOTAgentImageTag = "nightly-ot-beta-main"
18+
defaultOTAgentImageTag = "nightly-full-main-jmx"
1919
jmxSuffix = "-jmx"
20-
otelSuffix = "-7-ot-beta"
20+
otelSuffix = "-7-full"
2121
fipsSuffix = "-fips"
2222
)
2323

@@ -40,7 +40,7 @@ func dockerAgentFullImagePath(e config.Env, repositoryPath, imageTag string, ote
4040
case useOtel && useFIPS:
4141
panic("Unsupported: no image with FIPS and OTel exists yet")
4242
case useOtel && useJMX:
43-
panic("Unsupported: no image with JMX and OTel exists yet")
43+
tag += otelSuffix
4444
case useFIPS && useJMX:
4545
tag += fipsSuffix + jmxSuffix
4646
case useFIPS:

0 commit comments

Comments
 (0)