2.3.1-debian-11-r0 release
This commit is contained in:
parent
2534a56cf5
commit
9fa96c69f2
|
|
@ -0,0 +1,30 @@
|
|||
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/wait-for-port-1.0.3-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "1013e2ebbe58e5dc8f3c79fc952f020fc5306ba48463803cacfbed7779173924 /tmp/bitnami/pkg/cache/wait-for-port-1.0.3-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/wait-for-port-1.0.3-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/wait-for-port-1.0.3-0-linux-amd64-debian-11.tar.gz
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/kong-ingress-controller-2.3.1-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "97d0c414dcf3b396efa3efecc2bafb318cbd30598b76b3dd82d85ceba1161589 /tmp/bitnami/pkg/cache/kong-ingress-controller-2.3.1-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/kong-ingress-controller-2.3.1-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/kong-ingress-controller-2.3.1-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
|
||||
|
||||
ENV APP_VERSION="2.3.1" \
|
||||
BITNAMI_APP_NAME="kong-ingress-controller" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/kong-ingress-controller/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
ENTRYPOINT [ "kong-ingress-controller" ]
|
||||
CMD [ "--help" ]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
version: '2'
|
||||
services:
|
||||
kong-ingress-controller:
|
||||
image: docker.io/bitnami/kong-ingress-controller:2
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"kong-ingress-controller": {
|
||||
"arch": "amd64",
|
||||
"digest": "97d0c414dcf3b396efa3efecc2bafb318cbd30598b76b3dd82d85ceba1161589",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.3.1-0"
|
||||
},
|
||||
"wait-for-port": {
|
||||
"arch": "amd64",
|
||||
"digest": "1013e2ebbe58e5dc8f3c79fc952f020fc5306ba48463803cacfbed7779173924",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.0.3-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -28,7 +28,7 @@ $ docker run --name kong-ingress-controller bitnami/kong-ingress-controller:late
|
|||
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.3.1`, `2.3.1-debian-10-r56`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong-ingress-controller/blob/2.3.1-debian-10-r56/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-11`, `2.3.1`, `2.3.1-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-kong-ingress-controller/blob/2.3.1-debian-11-r0/2/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/kong-ingress-controller GitHub repo](https://github.com/bitnami/bitnami-docker-kong-ingress-controller).
|
||||
|
||||
|
|
@ -49,7 +49,7 @@ $ docker pull bitnami/kong-ingress-controller:[TAG]
|
|||
If you wish, you can also build the image yourself.
|
||||
|
||||
```console
|
||||
$ docker build -t bitnami/kong-ingress-controller:latest 'https://github.com/bitnami/bitnami-docker-kong-ingress-controller.git#master:2/debian-10'
|
||||
$ docker build -t bitnami/kong-ingress-controller:latest 'https://github.com/bitnami/bitnami-docker-kong-ingress-controller.git#master:2/debian-11'
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
|
|
|||
Loading…
Reference in New Issue