manifests/fedora-ostree-native-container: bump max_layers to 4

rpm-ostree crashes when max_layers is set to <4. Work around that
by bumping the max_layers argument.

See https://github.com/coreos/rpm-ostree/issues/4530
This commit is contained in:
Ondřej Budai 2023-08-07 15:56:22 +02:00 committed by Simon de Vlieger
parent 6e254c95af
commit c47850b8ae
2 changed files with 4 additions and 2 deletions

View file

@ -1040,7 +1040,7 @@
"type": "org.osbuild.ostree.encapsulate",
"options": {
"filename": "ostree-container.tar",
"max_layers": 1
"max_layers": 4
},
"inputs": {
"commit": {

View file

@ -18,7 +18,9 @@ pipelines:
- type: org.osbuild.ostree.encapsulate
options:
filename: ostree-container.tar
max_layers: 1
# max_layers < 4 is currently broken (or unsupported)
# see https://github.com/coreos/rpm-ostree/issues/4530
max_layers: 4
inputs:
commit:
type: org.osbuild.ostree