[bitnami/kubernetes-event-exporter] Deprecate branch 0 (#12462)

[bitnami/kubernetes-event-exporter] Deprecate kubernetes-event-exporter 0

Signed-off-by: Cori Avila <amisericordi@vmware.com>

Signed-off-by: Cori Avila <amisericordi@vmware.com>
This commit is contained in:
corico44 2022-11-07 11:25:38 +01:00 committed by GitHub
parent 01d9004bc6
commit a7d212b4ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 95 deletions

View File

@ -1,46 +0,0 @@
FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="0.11.0-debian-11-r54" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/kubernetes-event-exporter" \
org.opencontainers.image.title="kubernetes-event-exporter" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="0.11.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates curl procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"kubernetes-event-exporter-0.11.0-154-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
fi && \
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
done
RUN apt-get autoremove --purge -y curl && \
apt-get update && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
ENV APP_VERSION="0.11.0" \
BITNAMI_APP_NAME="kubernetes-event-exporter" \
PATH="/opt/bitnami/kubernetes-event-exporter/bin:$PATH"
USER 1001
ENTRYPOINT [ "kubernetes-event-exporter" ]
CMD [ "--help" ]

View File

@ -1,4 +0,0 @@
version: '2'
services:
kubernetes-event-exporter:
image: docker.io/bitnami/kubernetes-event-exporter:0

View File

@ -1,9 +0,0 @@
{
"kubernetes-event-exporter": {
"arch": "amd64",
"digest": "273150e61d87c136dff9995602cd0e543bc4bc48a6b21bbf0659b78aa220a44a",
"distro": "debian-11",
"type": "NAMI",
"version": "0.11.0-154"
}
}

View File

@ -1,3 +0,0 @@
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

@ -1,25 +0,0 @@
#!/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

View File

@ -1,4 +0,0 @@
rolling-tags:
- "0"
- "0-debian-11"
- "0.11.0"

View File

@ -67,10 +67,6 @@ $ docker logs kubernetes-event-exporter
You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver.
## Branch Deprecation Notice
Kubernetes Event Exporter's branch 0 is no longer maintained by upstream and is now internally tagged as to be deprecated. This branch will no longer be released in our catalog a month after this notice is published, but already released container images will still persist in the registries. Valid to be removed starting on: 11-05-2022
## Contributing
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.