2.4.5-debian-11-r0 release

This commit is contained in:
Bitnami Bot
2022-06-06 11:35:59 +00:00
committed by Bitnami Containers
parent 8c165e800b
commit ceda942c11
6 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
FROM docker.io/bitnami/minideb:bullseye
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl gzip libc6 procps tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/kubeapps-apis-2.4.5-0-linux-amd64-debian-11.tar.gz && \
echo "b8e60f4c145764684b6f2d48b4f7b810d591cf6946023d8947bb1047ca6abb74 /tmp/bitnami/pkg/cache/kubeapps-apis-2.4.5-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/kubeapps-apis-2.4.5-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/kubeapps-apis-2.4.5-0-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
RUN ln -s /opt/bitnami/kubeapps-apis/plugins /plugins && ln -s /opt/bitnami/kubeapps-apis/bin/kubeapps-apis /kubeapps-apis
ENV APP_VERSION="2.4.5" \
BITNAMI_APP_NAME="kubeapps-apis" \
PATH="/opt/bitnami/kubeapps-apis/bin:$PATH"
EXPOSE 50051
USER 1001
ENTRYPOINT [ "kubeapps-apis" ]
CMD [ "--help" ]

View File

@@ -0,0 +1,4 @@
version: '2'
services:
kubeapps-apis:
image: docker.io/bitnami/kubeapps-apis:2

View File

@@ -0,0 +1,9 @@
{
"kubeapps-apis": {
"arch": "amd64",
"digest": "b8e60f4c145764684b6f2d48b4f7b810d591cf6946023d8947bb1047ca6abb74",
"distro": "debian-11",
"type": "NAMI",
"version": "2.4.5-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,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

@@ -33,7 +33,7 @@ Non-root container images add an extra layer of security and are generally recom
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/).
* [`2`, `2-debian-10`, `2.4.5`, `2.4.5-debian-10-r37`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-apis/blob/2.4.5-debian-10-r37/2/debian-10/Dockerfile)
* [`2`, `2-debian-11`, `2.4.5`, `2.4.5-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-apis/blob/2.4.5-debian-11-r0/2/debian-11/Dockerfile)
## Configuration