Skip to content

Commit 1e155f9

Browse files
thozzaachilleas-k
authored andcommitted
test/api/all: set root partition size to at least 4 GiB
In [0] commit, we did the change for GCP image type only. We are hitting the "No space left on device" error while building Azure and OCI image types on RHEL-8.10. The images have 3 GiB root partition, which is not big enough to accommodate all the installed content. We use CDN repos for RHEL-8.10 testing, so most probably some recent batch update made the difference and caused the failure. Let's be consistent and make sure that the root partition min size is at least 4 GiB for all image types that use filesystem customizations. [0] 845f840 Signed-off-by: Tomáš Hozza <[email protected]>
1 parent 371dc06 commit 1e155f9

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

test/cases/api/aws.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ function createReqFile() {
4242
{
4343
"mountpoint": "/var",
4444
"min_size": 262144000
45+
},
46+
{
47+
"mountpoint": "/",
48+
"min_size": 4294967296
4549
}
4650
],
4751
"payload_repositories": [

test/cases/api/azure.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ function createReqFile() {
7474
{
7575
"mountpoint": "/var",
7676
"min_size": 262144000
77+
},
78+
{
79+
"mountpoint": "/",
80+
"min_size": 4294967296
7781
}
7882
],
7983
"payload_repositories": [

test/cases/api/oci.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ function createReqFile() {
6666
{
6767
"mountpoint": "/var",
6868
"min_size": 262144000
69+
},
70+
{
71+
"mountpoint": "/",
72+
"min_size": 4294967296
6973
}
7074
],
7175
"payload_repositories": [

0 commit comments

Comments
 (0)