1.3.1-debian-10-r0 release

This commit is contained in:
Bitnami Bot
2021-04-22 08:55:40 +00:00
parent 7bdbb5deb9
commit 6beaf6aab4
7 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
FROM docker.io/bitnami/minideb:buster
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl gzip procps tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/cert-manager-webhook-1.3.1-0-linux-amd64-debian-10.tar.gz && \
echo "4f0f63e50057a855a11828871591a94796facf1bd95a00ee600d57c31161f39c /tmp/bitnami/pkg/cache/cert-manager-webhook-1.3.1-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/cert-manager-webhook-1.3.1-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/cert-manager-webhook-1.3.1-0-linux-amd64-debian-10.tar.gz
RUN chmod g+rwX /opt/bitnami
ENV BITNAMI_APP_NAME="cert-manager-webhook" \
BITNAMI_IMAGE_VERSION="1.3.1-debian-10-r0" \
PATH="/opt/bitnami/cert-manager-webhook/bin:$PATH"
WORKDIR /opt/bitnami/cert-manager-webhook
USER 1001
ENTRYPOINT [ "/opt/bitnami/cert-manager-webhook/bin/cert-manager-webhook" ]

View File

@@ -0,0 +1,5 @@
version: '2'
services:
cert-manager-webhook:
image: docker.io/bitnami/cert-manager-webhook:1

View File

@@ -0,0 +1,9 @@
{
"cert-manager-webhook": {
"arch": "amd64",
"digest": "4f0f63e50057a855a11828871591a94796facf1bd95a00ee600d57c31161f39c",
"distro": "debian-10",
"type": "NAMI",
"version": "1.3.1-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

@@ -0,0 +1,73 @@
# What is Cert Manager Webhook?
Cert Manager Webhook is a part of the cert-manager project. Cert Manager Webhook provides dynamic admission control over cert-manager resources using a webhook server.
Cert-manager is a Kubernetes add-on to automate the management and issuance of TLS certificates from various issuing sources.
It will ensure certificates are valid and up to date periodically, and attempt to renew certificates at an appropriate time before expiry.
[https://github.com/jetstack/cert-manager](https://github.com/jetstack/cert-manager)
# Pre-requisites
Kubernetes cluster with `CustomResourceDefinition` or `ThirdPartyResource support`
# Why use Bitnami Images?
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
* With Bitnami images the latest bug fixes and features are available as soon as possible.
* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs.
* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading Linux distribution.
* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images.
* Bitnami container images are released daily with the latest distribution packages available.
> This [CVE scan report](https://quay.io/repository/bitnami/cert-manager-webhook?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page.
# Why use a non-root container?
Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/).
# Supported tags and respective `Dockerfile` links
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`, `1-debian-10`, `1.3.1`, `1.3.1-debian-10-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-cert-manager-webhook/blob/1.3.1-debian-10-r0/1/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/cert-manager-webhook GitHub repo](https://github.com/bitnami/bitnami-docker-cert-manager-webhook).
# Configuration
## Further documentation
For further documentation, please check [here](https://github.com/jetstack/cert-manager/blob/master/docs)
# Contributing
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-cert-manager-webhook/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-cert-manager-webhook/pulls) with your contribution.
# Issues
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-cert-manager-webhook/issues/new). For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (`docker version`)
- Output of `docker info`
- Version of this container
- The command you used to run the container, and any relevant output you saw (masking any sensitive information)
# License
Copyright (c) 2021 Bitnami
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -0,0 +1,5 @@
version: '2'
services:
cert-manager-webhook:
image: docker.io/bitnami/cert-manager-webhook:1