Skip to content

Commit

Permalink
envoy: bump test to v1.31.0 (#18539)
Browse files Browse the repository at this point in the history
this will help cover more newly added metrics

Signed-off-by: William Dauchy <[email protected]>
  • Loading branch information
wdauchy authored Sep 9, 2024
1 parent bcaaee2 commit 2d82a48
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion envoy/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ matrix.api-version.env-vars = [
{ key = "FLAVOR", value = "api_v2", if = ["2"] },
{ key = "ENVOY_VERSION", value = "1.14.1", if = ["2"] },
{ key = "FLAVOR", value = "api_v3", if = ["3"] },
{ key = "ENVOY_VERSION", value = "1.29.0", if = ["3"] },
{ key = "ENVOY_VERSION", value = "1.31.0", if = ["3"] },
]

[envs.default.env-vars]
Expand Down
2 changes: 1 addition & 1 deletion envoy/tests/docker/api_v3/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM envoyproxy/envoy:v1.29.0
FROM envoyproxy/envoy:v1.31.0
RUN apt-get update && apt-get install -y python3 bash python3-pip
RUN python3 --version && pip3 --version
RUN pip3 install -q Flask==2.1.2 requests==2.28.1
Expand Down
2 changes: 1 addition & 1 deletion envoy/tests/fixtures/legacy/server_info_api_v3
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "8a3511baac4f20ff7761c2efaf13e2dbda7901ca/1.29.0/Clean/RELEASE/BoringSSL", "state": "LIVE"}
{"version": "8a3511baac4f20ff7761c2efaf13e2dbda7901ca/1.31.0/Clean/RELEASE/BoringSSL", "state": "LIVE"}
4 changes: 2 additions & 2 deletions envoy/tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def test_collect_metadata(datadog_agent, fixture_path, mock_http_response, check
version_metadata = {
'version.scheme': 'semver',
'version.major': "1",
'version.minor': "29",
'version.minor': "31",
'version.patch': "0",
'version.raw': '1.29.0',
'version.raw': '1.31.0',
}

datadog_agent.assert_metadata('test:123', version_metadata)
Expand Down

0 comments on commit 2d82a48

Please sign in to comment.