Skip to content

Commit 093c3f3

Browse files
Update ddapm-test-agent docker image to v1.63.0 (#7246)
1 parent 4e52c28 commit 093c3f3

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

utils/_context/_scenarios/integration_frameworks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, name: str, doc: str) -> None:
3030
name,
3131
doc=doc,
3232
github_workflow="endtoend",
33-
agent_image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.62.0",
33+
agent_image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.63.0",
3434
scenario_groups=(groups.integration_frameworks,),
3535
)
3636

utils/_context/_scenarios/parametric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, name: str, doc: str) -> None:
6363
name,
6464
doc=doc,
6565
github_workflow="parametric",
66-
agent_image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.62.0",
66+
agent_image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.63.0",
6767
)
6868
self._parametric_tests_confs = ParametricScenario.PersistentParametricTestConf(self)
6969

utils/_context/containers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ def start(self, network: Network) -> Container:
14621462
class APMTestAgentContainer(TestedContainer):
14631463
def __init__(self, agent_port: int = 8126) -> None:
14641464
super().__init__(
1465-
image_name="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.31.1",
1465+
image_name="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.63.0",
14661466
name="ddapm-test-agent",
14671467
environment={
14681468
"SNAPSHOT_CI": "0",
@@ -1495,7 +1495,7 @@ class VCRCassettesContainer(TestedContainer):
14951495

14961496
def __init__(self, vcr_port: int = ContainerPorts.vcr_cassettes) -> None:
14971497
super().__init__(
1498-
image_name="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.62.0",
1498+
image_name="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.63.0",
14991499
name="vcr_cassettes",
15001500
environment={
15011501
"PORT": str(vcr_port),

utils/k8s_lib_injection/k8s_datadog_kubernetes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def deploy_test_agent(self, namespace: str = "datadog") -> None:
104104

105105
container = client.V1Container(
106106
name="trace-agent",
107-
image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.31.1",
107+
image="ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.63.0",
108108
image_pull_policy="Always",
109109
ports=[client.V1ContainerPort(container_port=8126, host_port=8126, name="traceport", protocol="TCP")],
110110
command=["ddapm-test-agent"],

0 commit comments

Comments
 (0)