[bitnami/envoy] Release 1.24.0-debian-11-r0 (#11561)

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-10-27 18:39:26 +02:00
committed by GitHub
parent 22aa7a985f
commit ba07f0e9fc
8 changed files with 151 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{
"envoy": {
"arch": "amd64",
"digest": "42f858473783c023bd38d13f06b6a20780f0dd76c560064778563449c5bc413b",
"distro": "debian-11",
"type": "NAMI",
"version": "1.24.0-0"
}
}

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,25 @@
#!/bin/sh
set -eu
n=0
max=2
export DEBIAN_FRONTEND=noninteractive
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
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives