diff options
| author | 2024-03-20 09:10:53 -0700 | |
|---|---|---|
| committer | 2024-03-20 09:10:53 -0700 | |
| commit | 08243564f393cab9a8ab553c9a7164b5bdf012ce (patch) | |
| tree | 92f2dfecd8f3bddc37233e151d6ae8bf52c21988 /teams/cloud | |
| parent | 319e5e8153452b4bc807c69f0847320973050e05 (diff) | |
| download | kiwi-descriptions-08243564f393cab9a8ab553c9a7164b5bdf012ce.tar.gz kiwi-descriptions-08243564f393cab9a8ab553c9a7164b5bdf012ce.zip | |
cloud: set Google root size to 10 GB and EC2 back to 5 GB
It's the *Google* image that's required to have a 10 GB root
for performance reasons, not the EC2 image, as the comment says,
but the change was inadvertently applied to the EC2 image not
the Google one. This means our Google image is slow and our EC2
images are failing to be published as AMIs.
Signed-off-by: Adam Williamson <awilliam@redhat.com>
Diffstat (limited to 'teams/cloud')
| -rw-r--r-- | teams/cloud/cloud.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/teams/cloud/cloud.xml b/teams/cloud/cloud.xml index c3d84bc..a5a30f9 100644 --- a/teams/cloud/cloud.xml +++ b/teams/cloud/cloud.xml @@ -57,8 +57,7 @@ rootfs_label="fedora" > <bootloader name="grub2" timeout="0"/> - <!-- GCP engineers have told us the disk images have bad performance if they are anything less than 10G --> - <size unit="G">10</size> + <size unit="G">5</size> <systemdisk> <volume name="@root=root"/> <volume name="home" parent="/"/> @@ -78,7 +77,8 @@ rootfs_label="fedora" > <bootloader name="grub2" timeout="0"/> - <size unit="G">5</size> + <!-- GCP engineers have told us the disk images have bad performance if they are anything less than 10G --> + <size unit="G">10</size> <systemdisk> <volume name="@root=root"/> <volume name="home" parent="/"/> |