From 01686867da5d35dc5fb555d4936a1448aa19a52e Mon Sep 17 00:00:00 2001 From: Jonas Bjurel Date: Sun, 6 Dec 2015 20:47:08 +0100 Subject: 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 --- labs/devel-pipeline/default/fuel/config/dha.yaml | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 labs/devel-pipeline/default/fuel/config/dha.yaml (limited to 'labs/devel-pipeline/default/fuel/config/dha.yaml') diff --git a/labs/devel-pipeline/default/fuel/config/dha.yaml b/labs/devel-pipeline/default/fuel/config/dha.yaml new file mode 100644 index 0000000..26c4d2b --- /dev/null +++ b/labs/devel-pipeline/default/fuel/config/dha.yaml @@ -0,0 +1,38 @@ +dha-pod-config-metadata: + title: Deployment Hardware Adapter (DHA) for fuel development pipeline - default version + version: 0.0.1 + created: Jan 7 2016 + comment: Default 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 -- cgit 1.2.3-korg