diff options
author | 2019-03-02 12:24:38 +0100 | |
---|---|---|
committer | 2019-03-11 15:04:58 +0000 | |
commit | dbe4d06ab1845a9c4a1465c4163cd80bfcdc787a (patch) | |
tree | 950672cbbc8139a42224fbf9f7c685021662928e /labs/arm | |
parent | 8ce19471853d3c1961274d2edd0f83221a8a3d43 (diff) |
[PDF/IDF] UNH virtual1 for LaaS/ONAP usage
In order to fully utilize all available resources (88 CPU threads,
256GB RAM) in Fuel virtual deployments, add basic PDF/IDF files
based on ericsson-virtual1 templates.
IDF is mostly unchanged compared to idf-virtual1 from Ericsson lab.
PDF allocates more disk capacity for the first node (controller role
in Fuel deployments), as well as more vCPUs/RAM for the last 2 nodes
(compute role in Fuel virtual deployments).
While at it, align ericsson vPOD definitions to match the new format
(2 disks should be defined for each compute node; account for HT).
Change-Id: Iac8ee857a3297084ea9f087ba8007950413fda25
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'labs/arm')
-rw-r--r-- | labs/arm/virtual2.yaml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/labs/arm/virtual2.yaml b/labs/arm/virtual2.yaml index fda336ce..f19a5de6 100644 --- a/labs/arm/virtual2.yaml +++ b/labs/arm/virtual2.yaml @@ -33,7 +33,7 @@ jumphost: disk_capacity: 500G disk_type: hdd disk_interface: sata - disk_rotation: 7200 + disk_rotation: &diskrotation 7200 os: ubuntu-16.04 remote_params: &remote_params type: ipmi @@ -126,12 +126,22 @@ nodes: ############################################################################ - name: node-4 node: *nodeparams - disks: *disks + disks: &compute_disks + - name: 'disk1' + disk_capacity: 100G + disk_type: hdd + disk_interface: scsi # virtio-scsi + disk_rotation: *diskrotation + - name: 'disk2' + disk_capacity: 100G + disk_type: hdd + disk_interface: scsi # virtio-scsi + disk_rotation: *diskrotation remote_management: *remotemgmt interfaces: *interfaces ############################################################################ - name: node-5 node: *nodeparams - disks: *disks + disks: *compute_disks remote_management: *remotemgmt interfaces: *interfaces |