kiwi-el8/test/data/example_containers_config.xml
Marcus Schäfer 24f32d1bce
Added containers integration with OBS
When building in the Open Build Service (OBS) there is no way
to create outgoing connections from the build workers. To allow
the <containers> section to fetch containers from the SUSE
registry we need to apply an OCI URI translation into a local
path. The actual OCI container image is expected to be provided
by the obs backend on the worker. Along with this commit also an
integration test named test-image-disk-containers is provided.
This Fixes jira#OBS-351
2024-11-11 16:35:59 +01:00

26 lines
797 B
XML

<?xml version="1.0" encoding="utf-8"?>
<image schemaversion="8.2" name="test-containers">
<description type="system">
<author>Some</author>
<contact>some@example.com</contact>
<specification>
Test containers section used in the buildservice
</specification>
</description>
<containers source="registry.opensuse.org" backend="podman">
<container name="tumbleweed" tag="latest" path="opensuse"/>
</containers>
<preferences>
<version>1.1.1</version>
<packagemanager>zypper</packagemanager>
<type image="xfs"/>
</preferences>
<repository>
<source path="obs://some/repo/oss"/>
</repository>
<packages type="bootstrap">
<package name="filesystem"/>
</packages>
</image>