From a4e46518dc40fc9e5400ae2ba83d713498999a7f Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Wed, 15 Oct 2025 00:04:49 +0000 Subject: [PATCH] 24.03-lts-sp2 update envoy to 1.36.0 --- Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile | 24 +++++++++++++++++++++ Cloud/envoy/README.md | 1 + Cloud/envoy/doc/image-info.yml | 3 ++- Cloud/envoy/meta.yml | 4 +++- 4 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile diff --git a/Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile b/Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..303dbcff --- /dev/null +++ b/Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile @@ -0,0 +1,24 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} +ARG VERSION=1.36.0 +ARG TARGETARCH +ARG BUILDARCH + +RUN dnf update -y \ + && dnf install -y wget \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /usr/local/envoy + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch_64"; \ + fi; \ + wget -O envoy https://github.com/envoyproxy/envoy/releases/download/v${VERSION}/envoy-${VERSION}-linux-${BUILDARCH} \ + && chmod +x envoy + +WORKDIR /usr/local/envoy + +CMD ["./envoy", "--help"] \ No newline at end of file diff --git a/Cloud/envoy/README.md b/Cloud/envoy/README.md index 3dad0082..5e71ae3c 100644 --- a/Cloud/envoy/README.md +++ b/Cloud/envoy/README.md @@ -18,6 +18,7 @@ The tag of each `envoy` docker image is consist of the version of `envoy` and th | Tag | Currently | Architectures | |---------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|---------------| +|[1.36.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile) | envoy 1.36.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | | [1.34.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/envoy/1.34.1/24.03-lts-sp1/Dockerfile) | Envoy 1.34.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Cloud/envoy/doc/image-info.yml b/Cloud/envoy/doc/image-info.yml index 6e7d8ff8..370574c8 100644 --- a/Cloud/envoy/doc/image-info.yml +++ b/Cloud/envoy/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[1.36.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/envoy/1.36.0/24.03-lts-sp2/Dockerfile) | envoy 1.36.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.34.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/envoy/1.34.1/24.03-lts-sp1/Dockerfile)| Envoy 1.34.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -94,4 +95,4 @@ dependency: - libm - libssl - libprotobuf - - libnghttp2 + - libnghttp2 \ No newline at end of file diff --git a/Cloud/envoy/meta.yml b/Cloud/envoy/meta.yml index da63f625..d91a16ef 100644 --- a/Cloud/envoy/meta.yml +++ b/Cloud/envoy/meta.yml @@ -1,4 +1,6 @@ 1.34.1-oe2403sp1: path: 1.34.1/24.03-lts-sp1/Dockerfile 1.35.0-oe2403sp1: - path: 1.35.0/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 1.35.0/24.03-lts-sp1/Dockerfile +1.36.0-oe2403sp2: + path: 1.36.0/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee