Skip to content

Commit 0853728

Browse files
authored
Updates Envoy to the latest (#23)
The API is now not WIP! envoyproxy/envoy#38956 Signed-off-by: Takeshi Yoneda <[email protected]>
1 parent 5ee8148 commit 0853728

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN cp /build/target/aarch64-unknown-linux-gnu/debug/librust_module.so /build/ar
2828
RUN cp /build/target/x86_64-unknown-linux-gnu/debug/librust_module.so /build/amd64_librust_module.so
2929

3030
# Finally, copy the built library to the final image.
31-
FROM envoyproxy/envoy-dev:59a14b1dcb532b23a5566173009e06d02892c1a9 AS envoy
31+
FROM envoyproxy/envoy-dev:a27d2c31627e59f096f7c8cdc84488649158b000 AS envoy
3232
ARG TARGETARCH
3333
ENV ENVOY_DYNAMIC_MODULES_SEARCH_PATH=/usr/local/lib
3434
COPY --from=rust_builder /build/${TARGETARCH}_librust_module.so /usr/local/lib/librust_module.so

ENVOY_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
59a14b1dcb532b23a5566173009e06d02892c1a9
1+
a27d2c31627e59f096f7c8cdc84488649158b000

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dynamic Modules Examples
22

3-
> Envoy Version: [59a14b1dcb532b23a5566173009e06d02892c1a9]
3+
> Envoy Version: [a27d2c31627e59f096f7c8cdc84488649158b000]
44
55
This repository hosts examples of dynamic modules for [Envoy] to extend its functionality.
66
The high level documentation is available [here][High Level Doc]. In short, a dynamic module is a shared library
@@ -79,6 +79,6 @@ NEW_VERSION=4a113b5118003682833ba612202eb68628861ac6 # Whatever the commit in en
7979
grep -rlF "${CURRENT_VERSION}" . | xargs sed -i "s/${CURRENT_VERSION}/${NEW_VERSION}/g"
8080
```
8181

82-
[59a14b1dcb532b23a5566173009e06d02892c1a9]: https://github.com/envoyproxy/envoy/tree/59a14b1dcb532b23a5566173009e06d02892c1a9
82+
[a27d2c31627e59f096f7c8cdc84488649158b000]: https://github.com/envoyproxy/envoy/tree/a27d2c31627e59f096f7c8cdc84488649158b000
8383
[Envoy]: https://github.com/envoyproxy/envoy
8484
[High Level Doc]: https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/advanced/dynamic_modules

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/envoyproxy/dynamic-modules-example"
88

99
[dependencies]
1010
# The SDK version must match the Envoy version due to the strict compatibility requirements.
11-
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "59a14b1dcb532b23a5566173009e06d02892c1a9" }
11+
envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "a27d2c31627e59f096f7c8cdc84488649158b000" }
1212
serde = { version = "1.0", features = ["derive"] }
1313
serde_json = "1.0"
1414
rand = "0.9.0"

0 commit comments

Comments
 (0)