diff --git a/bitnami/istio-proxyv2/1.14/debian-11/Dockerfile b/bitnami/istio-proxyv2/1.14/debian-11/Dockerfile new file mode 100644 index 000000000000..4c657cf5eea9 --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/Dockerfile @@ -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" ] diff --git a/bitnami/istio-proxyv2/1.14/debian-11/docker-compose.yml b/bitnami/istio-proxyv2/1.14/debian-11/docker-compose.yml new file mode 100644 index 000000000000..b492f72498f9 --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/docker-compose.yml @@ -0,0 +1,4 @@ +version: '2' +services: + istio-proxyv2: + image: docker.io/bitnami/istio-proxyv2:1.14 diff --git a/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json new file mode 100644 index 000000000000..0276f074cab3 --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -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" + } +} \ No newline at end of file diff --git a/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt new file mode 100644 index 000000000000..c76ba31f3b8a --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt @@ -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 diff --git a/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/usr/sbin/install_packages b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/usr/sbin/install_packages new file mode 100755 index 000000000000..c9577647443b --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/prebuildfs/usr/sbin/install_packages @@ -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 diff --git a/bitnami/istio-proxyv2/1.14/debian-11/tags-info.yaml b/bitnami/istio-proxyv2/1.14/debian-11/tags-info.yaml new file mode 100644 index 000000000000..473b8e646709 --- /dev/null +++ b/bitnami/istio-proxyv2/1.14/debian-11/tags-info.yaml @@ -0,0 +1,5 @@ +rolling-tags: + - "1.14" + - "1.14-debian-11" + - "1.14.3" + - "latest" diff --git a/bitnami/istio-proxyv2/README.md b/bitnami/istio-proxyv2/README.md index 21937a060eb7..3a3bf7f1a2c4 100644 --- a/bitnami/istio-proxyv2/README.md +++ b/bitnami/istio-proxyv2/README.md @@ -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). diff --git a/bitnami/istio-proxyv2/docker-compose.yml b/bitnami/istio-proxyv2/docker-compose.yml new file mode 100644 index 000000000000..b492f72498f9 --- /dev/null +++ b/bitnami/istio-proxyv2/docker-compose.yml @@ -0,0 +1,4 @@ +version: '2' +services: + istio-proxyv2: + image: docker.io/bitnami/istio-proxyv2:1.14