From 74ae1ec7f8e27a59c92cf34b8ce584c72b602ae4 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Thu, 4 Dec 2025 09:47:28 +0000 Subject: [PATCH] 24.03-lts-sp2 update istio to 1.28.1 --- Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile | 13 +++++++++++++ Cloud/istio/README.md | 1 + Cloud/istio/doc/image-info.yml | 1 + Cloud/istio/meta.yml | 4 +++- 4 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile diff --git a/Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile b/Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..f1885d5c --- /dev/null +++ b/Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile @@ -0,0 +1,13 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.28.1 + +RUN curl -fSL -o istio.tar.gz https://github.com/istio/istio/releases/download/${VERSION}/istio-${VERSION}-linux-${TARGETARCH}.tar.gz && \ + mkdir -p /usr/local/istio/ && \ + tar -zxf istio.tar.gz -C /usr/local/istio/ --strip-components=1 + +ENV PATH=$PATH:/usr/local/istio/bin/ + +CMD ["istioctl", "version"] diff --git a/Cloud/istio/README.md b/Cloud/istio/README.md index b94c042f..2416d58d 100644 --- a/Cloud/istio/README.md +++ b/Cloud/istio/README.md @@ -18,6 +18,7 @@ The tag of each `istio` docker image is consist of the version of `istio` and th | Tag | Currently | Architectures | |---------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|---------------| +|[1.28.1-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile) | istio 1.28.1 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.28.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.28.0/24.03-lts-sp2/Dockerfile) | istio 1.28.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.27.3-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.27.3/24.03-lts-sp2/Dockerfile) | istio 1.27.3 on openEuler 24.03-LTS-SP2 | amd64, arm64 | | [1.25.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.25.1/24.03-lts-sp1/Dockerfile) | Istio 1.25.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | diff --git a/Cloud/istio/doc/image-info.yml b/Cloud/istio/doc/image-info.yml index 6cd5f2ab..55734645 100644 --- a/Cloud/istio/doc/image-info.yml +++ b/Cloud/istio/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[1.28.1-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.28.1/24.03-lts-sp2/Dockerfile) | istio 1.28.1 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.28.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.28.0/24.03-lts-sp2/Dockerfile) | istio 1.28.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.27.3-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.27.3/24.03-lts-sp2/Dockerfile) | istio 1.27.3 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[1.25.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Cloud/istio/1.25.1/24.03-lts-sp1/Dockerfile)| Istio 1.25.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | diff --git a/Cloud/istio/meta.yml b/Cloud/istio/meta.yml index d705915f..91c859f8 100644 --- a/Cloud/istio/meta.yml +++ b/Cloud/istio/meta.yml @@ -5,4 +5,6 @@ 1.27.3-oe2403sp2: path: 1.27.3/24.03-lts-sp2/Dockerfile 1.28.0-oe2403sp2: - path: 1.28.0/24.03-lts-sp2/Dockerfile \ No newline at end of file + path: 1.28.0/24.03-lts-sp2/Dockerfile +1.28.1-oe2403sp2: + path: 1.28.1/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee