Alberto Planas Dominguez
37d8180d36
New package - needed for using labels in openSUSE containers. OBS-URL: https://build.opensuse.org/request/show/663685 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-kiwi_label_helper?expand=0&rev=1
29 lines
932 B
Plaintext
29 lines
932 B
Plaintext
obs-service-kiwi_label_helper
|
|
=============================
|
|
|
|
This service can be enabled to run during buildtime, when it will edit the
|
|
kiwi image descriptions to expand the <suse_label_helper:add_prefix/\>
|
|
element.
|
|
|
|
Example:
|
|
|
|
```
|
|
<image [...] xmlns:suse_label_helper="com.suse.label_helper">
|
|
[...]
|
|
<containerconfig [...]>
|
|
<labels>
|
|
<suse_label_helper:add_prefix prefix="com.suse.sle.base">
|
|
<label name="org.opencontainers.title" value="SUSE Linux Enterprise Server 12 SP3 Base Container"/>
|
|
</suse_label_helper:add_prefix>
|
|
```
|
|
|
|
expands to
|
|
|
|
```
|
|
<image [...] xmlns:suse_label_helper="com.suse.label_helper">
|
|
[...]
|
|
<containerconfig [...]>
|
|
<labels>
|
|
<label name="org.opencontainers.title" value="SUSE Linux Enterprise Server 12 SP3 Base Container"/>
|
|
<label name="com.suse.sle.base.title" value="SUSE Linux Enterprise Server 12 SP3 Base Container"/>
|
|
``` |