diff options
author | Michal Zegan <m.zegan@samsung.com> | 2019-09-05 18:48:18 +0200 |
---|---|---|
committer | Michal Zegan <m.zegan@samsung.com> | 2019-09-06 12:26:09 +0200 |
commit | 7c1131e5b46160a1ba4ee52d59b4650cdc1a4c9d (patch) | |
tree | ef3f00caffe4817fb18dacd35d6b5e4ac75b6e13 /tools/cicdansible/heat | |
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/heat')
-rw-r--r-- | tools/cicdansible/heat/installer.yaml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tools/cicdansible/heat/installer.yaml b/tools/cicdansible/heat/installer.yaml index 793386c6..7b3f10c0 100644 --- a/tools/cicdansible/heat/installer.yaml +++ b/tools/cicdansible/heat/installer.yaml @@ -90,6 +90,13 @@ parameters: constraints: - range: { min: 1 } description: "must be a positive number" + use_volume_for_nfs: + type: boolean + label: "use volume for nfs storage" + description: "Indicates whether a cinder volume should be used for nfs storage or not. If not checked, the nfs would be stored in the root disk" +conditions: + #Condition for nfs volume usage. + use_volume_for_nfs: { get_param: use_volume_for_nfs } resources: # Security group used to secure access to instances. secgroup: @@ -200,12 +207,14 @@ resources: #Nfs storage volume for first node. nfs_storage: type: OS::Cinder::Volume + condition: use_volume_for_nfs properties: name: nfs_storage size: 50 #Attachment of volume to first node. nfs_storage_attachment: type: OS::Cinder::VolumeAttachment + condition: use_volume_for_nfs properties: instance_uuid: { get_attr: [nodes, "resource.0"] } volume_id: { get_resource: nfs_storage } @@ -292,8 +301,12 @@ resources: node0_volumes: type: OS::Heat::Value properties: + #Note that it returns an empty list if nfs volume is disabled. value: - - [{ get_resource: nfs_storage }, "/dockerdata-nfs"] + if: + - use_volume_for_nfs + - - [{ get_resource: nfs_storage }, "/dockerdata-nfs"] + - [] #Output values outputs: installer_ip: |