Skip to content

Commit

Permalink
Mark mariadb, nginx and helm as L3 supported
Browse files Browse the repository at this point in the history
They're on SLES, and we inherit that.
  • Loading branch information
dirkmueller committed Jan 15, 2024
1 parent a05e03c commit 3c027b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/bci_build/package/appcontainers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down Expand Up @@ -210,6 +211,7 @@
)
],
pretty_name="MariaDB Client",
support_level=SupportLevel.L3,
package_list=["mariadb-client"],
build_recipe_type=BuildType.DOCKER,
cmd=["mariadb"],
Expand Down Expand Up @@ -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/
Expand Down Expand Up @@ -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
]
Expand Down

0 comments on commit 3c027b2

Please sign in to comment.