From 3c027b285ed12f7eb90ad1334cae03d40d94b6a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Mon, 15 Jan 2024 08:36:27 +0100 Subject: [PATCH] Mark mariadb, nginx and helm as L3 supported They're on SLES, and we inherit that. --- src/bci_build/package/appcontainers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bci_build/package/appcontainers.py b/src/bci_build/package/appcontainers.py index 36383f265..ab7789e1c 100644 --- a/src/bci_build/package/appcontainers.py +++ b/src/bci_build/package/appcontainers.py @@ -168,6 +168,7 @@ "docker-entrypoint.sh": _MARIAD_ENTRYPOINT, "_constraints": generate_disk_size_constraints(11), }, + support_level=SupportLevel.L3, build_recipe_type=BuildType.DOCKER, cmd=["mariadbd"], volumes=["/var/lib/mysql"], @@ -210,6 +211,7 @@ ) ], pretty_name="MariaDB Client", + support_level=SupportLevel.L3, package_list=["mariadb-client"], build_recipe_type=BuildType.DOCKER, cmd=["mariadb"], @@ -467,6 +469,7 @@ def _get_nginx_kwargs(os_version: OsVersion): "cmd": ["nginx", "-g", "daemon off;"], "build_recipe_type": BuildType.DOCKER, "extra_files": _NGINX_FILES, + "support_level": SupportLevel.L3, "exposes_tcp": [80], "custom_end": f"""{DOCKERFILE_RUN} mkdir /docker-entrypoint.d COPY [1-3]0-*.sh /docker-entrypoint.d/ @@ -605,6 +608,7 @@ def _get_nginx_kwargs(os_version: OsVersion): entrypoint=["/usr/bin/helm"], cmd=["help"], build_recipe_type=BuildType.KIWI, + support_level=SupportLevel.L3, ) for os_version in ALL_NONBASE_OS_VERSIONS ]