[bitnami/istio-proxyv2] Release 1.14.3-debian-11-r0 (#4324)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2022-08-26 14:04:15 +02:00 committed by GitHub
parent 6fc1bb5a3b
commit f706f258f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 99 additions and 1 deletions

View File

@ -0,0 +1,42 @@
FROM docker.io/bitnami/minideb:bullseye
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="1.14.3-debian-11-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/istio-proxyv2" \
org.opencontainers.image.title="istio-proxyv2" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="1.14.3"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates curl gzip libc6 procps tar
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
if [ ! -f envoy-1.22.5-0-linux-amd64-debian-11.tar.gz ]; then \
curl -SsLf https://downloads.bitnami.com/files/stacksmith/envoy-1.22.5-0-linux-amd64-debian-11.tar.gz -O ; \
fi && \
echo "fa9ada6acb45636407c999ffcaf00c629d94a22754906f4cbcf6c85dfee0a7a1 envoy-1.22.5-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf envoy-1.22.5-0-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
rm -rf envoy-1.22.5-0-linux-amd64-debian-11.tar.gz
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
if [ ! -f istio-proxyv2-1.14.3-1-linux-amd64-debian-11.tar.gz ]; then \
curl -SsLf https://downloads.bitnami.com/files/stacksmith/istio-proxyv2-1.14.3-1-linux-amd64-debian-11.tar.gz -O ; \
fi && \
echo "4cfefe8e1bafca1d606632b3082b486c4713acb65d44d6d528c4275cdc7785c0 istio-proxyv2-1.14.3-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf istio-proxyv2-1.14.3-1-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
rm -rf istio-proxyv2-1.14.3-1-linux-amd64-debian-11.tar.gz
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
ENV APP_VERSION="1.14.3" \
BITNAMI_APP_NAME="istio-proxyv2" \
PATH="/opt/bitnami/envoy/bin:/opt/bitnami/istio/bin:$PATH"
USER 1001
ENTRYPOINT [ "/opt/bitnami/istio/bin/pilot-agent" ]

View File

@ -0,0 +1,4 @@
version: '2'
services:
istio-proxyv2:
image: docker.io/bitnami/istio-proxyv2:1.14

View File

@ -0,0 +1,16 @@
{
"envoy": {
"arch": "amd64",
"digest": "fa9ada6acb45636407c999ffcaf00c629d94a22754906f4cbcf6c85dfee0a7a1",
"distro": "debian-11",
"type": "NAMI",
"version": "1.22.5-0"
},
"istio-proxyv2": {
"arch": "amd64",
"digest": "4cfefe8e1bafca1d606632b3082b486c4713acb65d44d6d528c4275cdc7785c0",
"distro": "debian-11",
"type": "NAMI",
"version": "1.14.3-1"
}
}

View File

@ -0,0 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@ -0,0 +1,24 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives

View File

@ -0,0 +1,5 @@
rolling-tags:
- "1.14"
- "1.14-debian-11"
- "1.14.3"
- "latest"

View File

@ -28,7 +28,7 @@ $ docker run --name Istio Proxy V2 bitnami/Istio Proxy V2:latest
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
- [`1.14`, `1.14-debian-11`, `1.14.3`, `1.14.3-debian-11-r-1`, `latest` (1.14/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-proxyv2/1.14/debian-11/Dockerfile)
- [`1.14`, `1.14-debian-11`, `1.14.3`, `1.14.3-debian-11-r0`, `latest` (1.14/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-proxyv2/1.14/debian-11/Dockerfile)
- [`1.13`, `1.13-debian-11`, `1.13.7`, `1.13.7-debian-11-r0` (1.13/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/istio-proxyv2/1.13/debian-11/Dockerfile)
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).

View File

@ -0,0 +1,4 @@
version: '2'
services:
istio-proxyv2:
image: docker.io/bitnami/istio-proxyv2:1.14