Skip to content

Commit

Permalink
Merge pull request #851 from SUSE/support_l3
Browse files Browse the repository at this point in the history
Mark mariadb, nginx and helm as L3 supported
  • Loading branch information
dcermak authored Jan 15, 2024
2 parents 1d528f0 + 3c027b2 commit cc31e35
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 cc31e35

Please sign in to comment.