From 40493573d8616ce83a3956f6d1fc4fcc447bb39e Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Sat, 20 Aug 2016 16:21:59 +0100 Subject: [PATCH] Reduce minimum data disk size for the AIO to 50GB Some OpenStack-CI providers do not meet the current minimum of 60GB. Bluebox in particular is providing instances with a root disk size of around 58GB. With the updates to reduce the repo build size and the implementation of overlayfs-based container builds, we have reduced our disk space requirements to just over 40GB. This patch sets a new minimum of 50GB. Change-Id: Id949549906260dbe57a6b413dcc99497f9492310 --- doc/source/developer-docs/quickstart-aio.rst | 2 +- tests/roles/bootstrap-host/defaults/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/developer-docs/quickstart-aio.rst b/doc/source/developer-docs/quickstart-aio.rst index b9fe8084da..30f9ee9891 100644 --- a/doc/source/developer-docs/quickstart-aio.rst +++ b/doc/source/developer-docs/quickstart-aio.rst @@ -16,7 +16,7 @@ they're great for smaller proof-of-concept deployments. Absolute minimum server resources (currently used for gate checks): * 8 vCPU's -* 60GB free disk space on the root partition +* 50GB free disk space on the root partition * 8GB RAM Recommended server resources: diff --git a/tests/roles/bootstrap-host/defaults/main.yml b/tests/roles/bootstrap-host/defaults/main.yml index 74231fc6e7..82a37ec896 100644 --- a/tests/roles/bootstrap-host/defaults/main.yml +++ b/tests/roles/bootstrap-host/defaults/main.yml @@ -77,7 +77,7 @@ bootstrap_host_data_disk_device_force: no # # If the storage capacity on this device is greater than or equal to this # size (in GB), the bootstrap process will use it. -bootstrap_host_data_disk_min_size: 60 +bootstrap_host_data_disk_min_size: 50 ### Optional Settings ###