diff options
author | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2015-12-06 20:47:08 +0100 |
---|---|---|
committer | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2016-01-08 12:37:40 +0100 |
commit | 01686867da5d35dc5fb555d4936a1448aa19a52e (patch) | |
tree | 1400b93df935fdc6441b4dbdfeda82c621f5335c /labs/devel-pipeline/elx/fuel/config/dha.yaml | |
parent | 50c2e074c8aeade1017a12ba21161b7cfef32e4b (diff) |
Proposal for common OPNFV CI/CD Configuration structure
This patch provides a common configuration structure, providing separation of concern between:
1) Base installer configuration
2) Per Lab/POD specific configuration
3) Per installer feature/plugin configuration
4) Deployment scenario configuration.
It is not yet aligned across installers - but provides a structure for
future alignment.
It relates to the implementation provided here:
https://gerrit.opnfv.org/gerrit/#/c/3995/
Also see the README file
VERIFIED
READY TO MERGE
JIRA:
Change-Id: I852376ba4b500cc50cba6cb3c2634533fc6426a6
Signed-off-by: Jonas Bjurel <jonas.bjurel@ericsson.com>
Diffstat (limited to 'labs/devel-pipeline/elx/fuel/config/dha.yaml')
-rw-r--r-- | labs/devel-pipeline/elx/fuel/config/dha.yaml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/labs/devel-pipeline/elx/fuel/config/dha.yaml b/labs/devel-pipeline/elx/fuel/config/dha.yaml new file mode 100644 index 0000000..fc0e93a --- /dev/null +++ b/labs/devel-pipeline/elx/fuel/config/dha.yaml @@ -0,0 +1,38 @@ +dha-pod-config-metadata: + title: Deployment Hardware Adapter (DHA) for fuel development pipeline - Ericsson ELX version + version: 0.0.1 + created: Dececember 30 2015 + comment: ELX version + +# Adapter to use for this definition +adapter: libvirt + +# Node list. +# Mandatory property is id, all other properties are adapter specific. + +nodes: +- id: 1 + libvirtName: controller1 + libvirtTemplate: templates/virtual_environment/vms/controller.xml +- id: 2 + libvirtName: compute1 + libvirtTemplate: templates/virtual_environment/vms/compute.xml +- id: 3 + libvirtName: compute2 + libvirtTemplate: templates/virtual_environment/vms/compute.xml +- id: 4 + libvirtName: compute3 + libvirtTemplate: templates/virtual_environment/vms/compute.xml +- id: 5 + libvirtName: fuel-master + libvirtTemplate: templates/virtual_environment/vms/fuel.xml + isFuel: yes + username: root + password: r00tme + +virtNetConfDir: templates/virtual_environment/networks + +disks: + fuel: 50G + controller: 100G + compute: 50G |