From b37046d7ba943218c1c657563b3f173d7337d516 Mon Sep 17 00:00:00 2001 From: "carey.xu" Date: Tue, 8 Dec 2015 18:54:11 +0800 Subject: deploy and pod-config files This patch propopses to define two common OPNFV configuration type files: - The Deploy configuration file, defining the high-level deployment requirements/scenario - The POD configuration file, defining the HW-/POD configuration Change-Id: I82179d9fafd294ebe8594a592f21a1323731dfad Signed-off-by: carey.xu --- config/pod-config.yml | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 config/pod-config.yml (limited to 'config/pod-config.yml') diff --git a/config/pod-config.yml b/config/pod-config.yml new file mode 100644 index 00000000..49c90cb7 --- /dev/null +++ b/config/pod-config.yml @@ -0,0 +1,86 @@ + +nodes: + - name: host1 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:55' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.3 + user: root + pass: root + + - name: host2 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:56' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.4 + user: root + pass: root + + - name: host3 + tags: control + arch: "x86_64" + mac_address: '11:22:33:44:57' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.5 + user: root + pass: root + + - name: host4 + tags: compute + arch: "x86_64" + mac_address: '11:22:33:44:57' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.6 + user: root + pass: root + + - name: host5 + tags: compute + arch: "x86_64" + mac_address: '11:22:33:44:58' # PXE install nic MAC + + # for virtual deployment + cpus: 2 + memory: 2048 + disk: 40 + + # for baremetal deployment + power: + type: ipmi + address: 10.4.7.7 + user: root + pass: root -- cgit 1.2.3-korg