Skip to content

Commit

Permalink
Attempt to add envoy contrib to the protobufs
Browse files Browse the repository at this point in the history
  • Loading branch information
cetanu committed Nov 13, 2024
1 parent e701d1f commit b1d868e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion utils/download_protobufs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

utf8 = "utf-8"

ENVOY_VERSION = "1.31.0"
ENVOY_VERSION = "1.32.0"

proto_include = protoc.pkg_resources.resource_filename("grpc_tools", "_proto")
envoy = Path("./envoy")
Expand All @@ -34,6 +34,12 @@
namespace="envoy",
directory=f"envoy-{ENVOY_VERSION}/api",
),
Package(
url=f"https://github.com/envoyproxy/envoy/archive/refs/tags/v{ENVOY_VERSION}.zip",
name="envoy",
namespace="envoy",
directory=f"envoy-{ENVOY_VERSION}/contrib",
),
Package(
url="https://github.com/cncf/xds/archive/refs/heads/main.zip",
name="xds",
Expand Down

0 comments on commit b1d868e

Please sign in to comment.