From b4874c7b6e96feca40847aa913079eef3bebe057 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Tue, 3 May 2016 15:26:08 +0000 Subject: [PATCH] boosting disk and ram for taskotorn dev clients --- .../templates/settings.py.testcloud.j2 | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2 b/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2 index ca881eae36..f1fd8a5700 100644 --- a/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2 +++ b/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2 @@ -70,9 +70,19 @@ write_files: # returns immediately after starting the boot process. BOOT_TIMEOUT = 60 +{# this is just in dev for now, testing before moving it anywhere else #} +{% if deployment_type in ['dev'] %} +# ram size, in MiB +RAM = 6144 + +# Desired size, in GiB of instance disks. 0 leaves disk capacity +# identical to source image +DISK_SIZE = 40 +{% else %} # ram size, in MiB RAM = 2048 # Desired size, in GiB of instance disks. 0 leaves disk capacity # identical to source image DISK_SIZE = 10 +{% endif %}