diff --git a/Dockerfile b/Dockerfile index 9ceb543..f0efe09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ RUN CC="zig cc -target aarch64-linux-gnu" CXX="zig c++ -target aarch64-linux-gnu RUN CC="zig cc -target x86_64-linux-gnu" CXX="zig c++ -target x86_64-linux-gnu" CGO_ENABLED=1 GOARCH=amd64 go build -buildmode=c-shared -o /build/amd64_libgo_module.so . ##### Build the final image ##### -FROM envoyproxy/envoy:v1.35-latest AS envoy +FROM envoyproxy/envoy-dev:af61c6b2101e8c70281b661d2bd726115ae1da2d AS envoy ARG TARGETARCH ENV ENVOY_DYNAMIC_MODULES_SEARCH_PATH=/usr/local/lib COPY --from=rust_builder /build/${TARGETARCH}_librust_module.so /usr/local/lib/librust_module.so diff --git a/ENVOY_VERSION b/ENVOY_VERSION index 83af2a2..0a3cda6 100644 --- a/ENVOY_VERSION +++ b/ENVOY_VERSION @@ -1 +1 @@ -84305a6cb64bd55aaf606bdd53de7cd6080427a1 \ No newline at end of file +af61c6b2101e8c70281b661d2bd726115ae1da2d \ No newline at end of file diff --git a/README.md b/README.md index 1f16d39..ad5496c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ # Dynamic Modules Examples -> Envoy Version: [84305a6cb64bd55aaf606bdd53de7cd6080427a1] v1.35 +> Envoy Version: [af61c6b2101e8c70281b661d2bd726115ae1da2d] v1.36-dev > > Since dynamic modules are tied with a specific Envoy version, this repository is based on the specific commit of Envoy. -> For examples for a specific Envoy version, please check out `release/v` branch, e.g. [`release/v1.34`](https://github.com/envoyproxy/dynamic-modules-examples/tree/release/v1.34). +> For examples for a specific Envoy version, please check out `release/v` branches: +> * [`release/v1.34`](https://github.com/envoyproxy/dynamic-modules-examples/tree/release/v1.34) +> * [`release/v1.35`](https://github.com/envoyproxy/dynamic-modules-examples/tree/release/v1.35) This repository hosts examples of dynamic modules for [Envoy] to extend its functionality. The high level documentation is available [here][High Level Doc]. In short, a dynamic module is a shared library @@ -87,6 +89,6 @@ If you want to explicitly specify the docker image, use `ENVOY_IMAGE` environmen ENVOY_IMAGE=foo-bar-image:latest go test . -v -count=1 ``` -[84305a6cb64bd55aaf606bdd53de7cd6080427a1]: https://github.com/envoyproxy/envoy/tree/84305a6cb64bd55aaf606bdd53de7cd6080427a1 +[af61c6b2101e8c70281b661d2bd726115ae1da2d]: https://github.com/envoyproxy/envoy/tree/af61c6b2101e8c70281b661d2bd726115ae1da2d [Envoy]: https://github.com/envoyproxy/envoy [High Level Doc]: https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/advanced/dynamic_modules diff --git a/go/gosdk/abi.go b/go/gosdk/abi.go index 62e6428..b60e807 100644 --- a/go/gosdk/abi.go +++ b/go/gosdk/abi.go @@ -3,7 +3,7 @@ package gosdk // Following is a distillation of the Envoy ABI for dynamic modules: -// https://github.com/envoyproxy/envoy/blob/84305a6cb64bd55aaf606bdd53de7cd6080427a1/source/extensions/dynamic_modules/abi.h +// https://github.com/envoyproxy/envoy/blob/af61c6b2101e8c70281b661d2bd726115ae1da2d/source/extensions/dynamic_modules/abi.h // // Why not using the header file directly? That is because Go runtime complains // about passing pointers to C code on the boundary. In the following code, we replace @@ -161,7 +161,7 @@ import ( "unsafe" ) -// https://github.com/envoyproxy/envoy/blob/84305a6cb64bd55aaf606bdd53de7cd6080427a1/source/extensions/dynamic_modules/abi_version.h +// https://github.com/envoyproxy/envoy/blob/af61c6b2101e8c70281b661d2bd726115ae1da2d/source/extensions/dynamic_modules/abi_version.h var version = append([]byte("c32cc7696650a6a54653327e6609734a8b32aeb5c80a6a664687636a0d671666"), 0) //export envoy_dynamic_module_on_program_init diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 85e9d6f..2705ce7 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -84,7 +84,7 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "envoy-proxy-dynamic-modules-rust-sdk" version = "0.1.0" -source = "git+https://github.com/envoyproxy/envoy?rev=84305a6cb64bd55aaf606bdd53de7cd6080427a1#84305a6cb64bd55aaf606bdd53de7cd6080427a1" +source = "git+https://github.com/envoyproxy/envoy?rev=af61c6b2101e8c70281b661d2bd726115ae1da2d#af61c6b2101e8c70281b661d2bd726115ae1da2d" dependencies = [ "bindgen", "mockall", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4453050..d188333 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/envoyproxy/dynamic-modules-example" [dependencies] # The SDK version must match the Envoy version due to the strict compatibility requirements. -envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "84305a6cb64bd55aaf606bdd53de7cd6080427a1" } +envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "af61c6b2101e8c70281b661d2bd726115ae1da2d" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" rand = "0.9.0"