diff options
author | 2019-09-05 18:48:18 +0200 | |
---|---|---|
committer | 2019-09-06 12:26:09 +0200 | |
commit | 7c1131e5b46160a1ba4ee52d59b4650cdc1a4c9d (patch) | |
tree | ef3f00caffe4817fb18dacd35d6b5e4ac75b6e13 /tools/cicdansible/group_vars | |
parent | 6425e67d3832878b93b0da1520c150b81675cd3b (diff) |
Add ability to put dockerdata-nfs on root disk
Modify the heat template so that it becomes possible to
skip volume creation for dockerdata-nfs.
This feature can be toggled at will. It is useful for the cases
where /dockerdata-nfs needs to be fast, but there are no ssd volumes available.
Of course, large enough ephemeral disks are needed, around
60 gb.
Change-Id: I37e29e7cf7273d1d4a6e896ec017d9ef8177b1d0
Issue-ID: OOM-2042
Signed-off-by: Michal Zegan <m.zegan@samsung.com>
Diffstat (limited to 'tools/cicdansible/group_vars')
-rw-r--r-- | tools/cicdansible/group_vars/all.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/cicdansible/group_vars/all.yml b/tools/cicdansible/group_vars/all.yml index 581e7c4a..f886b628 100644 --- a/tools/cicdansible/group_vars/all.yml +++ b/tools/cicdansible/group_vars/all.yml @@ -26,6 +26,9 @@ infra_flavor_name: "" installer_flavor_name: "" #Name of the image for instances. image_name: "" +#Whether to use a volume for /dockerdata-nfs or to use ephemeral disk. +#True by default, most openstack providers offer ssd volumes probably. +use_volume_for_nfs: true #Cidr of private subnet where instances are connected. subnet_cidr: "10.1.0.0/24" #Start of dhcp allocation range for subnet. |