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:
parent
6e254c95af
commit
c47850b8ae
2 changed files with 4 additions and 2 deletions
|
|
@ -1040,7 +1040,7 @@
|
|||
"type": "org.osbuild.ostree.encapsulate",
|
||||
"options": {
|
||||
"filename": "ostree-container.tar",
|
||||
"max_layers": 1
|
||||
"max_layers": 4
|
||||
},
|
||||
"inputs": {
|
||||
"commit": {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue