[bitnami/istio-pilot] Release 1.14.3-debian-11-r0 (#4323)

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:08 +02:00
committed by GitHub
parent f34be44ca5
commit 6fc1bb5a3b
8 changed files with 85 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
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-pilot" \
org.opencontainers.image.title="istio-pilot" \
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 procps tar
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
if [ ! -f istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz ]; then \
curl -SsLf https://downloads.bitnami.com/files/stacksmith/istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz -O ; \
fi && \
echo "36cf26ef8ad9afefdd8dc54978923ab1acfc805c74d56ea293ab90404f52f40c istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf istio-pilot-1.14.3-1-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --wildcards '*/files' && \
rm -rf istio-pilot-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-pilot" \
PATH="/opt/bitnami/istio/bin:$PATH"
USER 1001
ENTRYPOINT [ "/opt/bitnami/istio/bin/pilot-discovery" ]

View File

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

View File

@@ -0,0 +1,9 @@
{
"istio-pilot": {
"arch": "amd64",
"digest": "36cf26ef8ad9afefdd8dc54978923ab1acfc805c74d56ea293ab90404f52f40c",
"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 Pilot bitnami/Istio Pilot: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-pilot/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-pilot/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-pilot/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-pilot:
image: docker.io/bitnami/istio-pilot:1.14