From 699b21b8a5ee27d53acfc0dfa26acfa2d52b14f1 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 30 May 2024 10:23:08 +1000 Subject: [PATCH] ubi: include metadata for generate-stackbrew-library.sh --- 10.11-ubi/Dockerfile | 6 ++++++ 10.6-ubi/Dockerfile | 7 +++++++ 11.4-ubi/Dockerfile | 6 ++++++ Dockerfile-ubi.template | 7 +++++++ 4 files changed, 26 insertions(+) diff --git a/10.11-ubi/Dockerfile b/10.11-ubi/Dockerfile index 2d33cf7..eb29cc6 100644 --- a/10.11-ubi/Dockerfile +++ b/10.11-ubi/Dockerfile @@ -53,6 +53,12 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ org.opencontainers.image.version="10.11.8" \ org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker" +# bashbrew-architectures: amd64 arm64v8 ppc64le s390x +ARG MARIADB_VERSION=10.11.8 +# release-status:Stable +# release-support-type:Long Term Support +# (https://downloads.mariadb.org/rest-api/mariadb/) + # missing pwgen(epel), jemalloc(epel) (as entrypoint/user extensions) # procps, pv(epel) - missing dependencies of galera sst script # tzdata re-installed as only a fake version is part of the ubi-minimal base image. diff --git a/10.6-ubi/Dockerfile b/10.6-ubi/Dockerfile index 2b5cdf8..217f8a8 100644 --- a/10.6-ubi/Dockerfile +++ b/10.6-ubi/Dockerfile @@ -53,6 +53,13 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ org.opencontainers.image.version="10.6.18" \ org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker" +# bashbrew-architectures: amd64 arm64v8 ppc64le s390x +ARG MARIADB_MAJOR=10.6 +ARG MARIADB_VERSION=10.6.18 +# release-status:Stable +# release-support-type:Long Term Support +# (https://downloads.mariadb.org/rest-api/mariadb/) + # missing pwgen(epel), jemalloc(epel) (as entrypoint/user extensions) # procps, pv(epel) - missing dependencies of galera sst script # tzdata re-installed as only a fake version is part of the ubi-minimal base image. diff --git a/11.4-ubi/Dockerfile b/11.4-ubi/Dockerfile index 0b9d228..8a45514 100644 --- a/11.4-ubi/Dockerfile +++ b/11.4-ubi/Dockerfile @@ -53,6 +53,12 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ org.opencontainers.image.version="11.4.2" \ org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker" +# bashbrew-architectures: amd64 arm64v8 ppc64le s390x +ARG MARIADB_VERSION=11.4.1 +# release-status:Stable +# release-support-type:Long Term Support +# (https://downloads.mariadb.org/rest-api/mariadb/) + # missing pwgen(epel), jemalloc(epel) (as entrypoint/user extensions) # procps, pv(epel) - missing dependencies of galera sst script # tzdata re-installed as only a fake version is part of the ubi-minimal base image. diff --git a/Dockerfile-ubi.template b/Dockerfile-ubi.template index 4a4ee4e..c04dbdc 100644 --- a/Dockerfile-ubi.template +++ b/Dockerfile-ubi.template @@ -53,6 +53,13 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \ org.opencontainers.image.version="%%MARIADB_VERSION_BASIC%%" \ org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker" +# bashbrew-architectures:%%ARCHES%% +ARG MARIADB_MAJOR=%%MARIADB_MAJOR%% +ARG MARIADB_VERSION=%%MARIADB_VERSION%% +# release-status:%%MARIADB_RELEASE_STATUS%% +# release-support-type:%%MARIADB_SUPPORT_TYPE%% +# (https://downloads.mariadb.org/rest-api/mariadb/) + # missing pwgen(epel), jemalloc(epel) (as entrypoint/user extensions) # procps, pv(epel) - missing dependencies of galera sst script # tzdata re-installed as only a fake version is part of the ubi-minimal base image.