diff options
Diffstat (limited to 'mcp/config/scenario')
-rw-r--r-- | mcp/config/scenario/README.md | 22 | ||||
-rw-r--r-- | mcp/config/scenario/baremetal/.gitkeep | 0 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/.gitkeep | 0 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/defaults.yaml | 6 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/os-nosdn-nofeature-noha.yaml | 18 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/os-nosdn-ovs-noha.yaml | 23 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/os-odl_l2-nofeature-noha.yaml | 22 | ||||
-rw-r--r-- | mcp/config/scenario/virtual/os-odl_l3-nofeature-noha.yaml | 22 |
8 files changed, 113 insertions, 0 deletions
diff --git a/mcp/config/scenario/README.md b/mcp/config/scenario/README.md new file mode 100644 index 000000000..6ecf05f32 --- /dev/null +++ b/mcp/config/scenario/README.md @@ -0,0 +1,22 @@ +############################################################################## +# Copyright (c) 2017 Mirantis Inc., Enea AB and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +Abstract: +--------- +This directory contains configuration files for different OPNFV deployment +feature scenarios used by Fuel@OPNFV, e.g.: +- High availability configuration; +- Type of SDN controller to be deployed; +- OPNFV collaboration project features to be deployed; +- Provisioning of any other sevices; +- POD configuration (baremetal, virtual); + +NOTES: +------ +This directory is highly likely to change and/or be replaced/complemented +by the new PDF (Pod Descriptor File) info in securedlab OPNFV git repo. diff --git a/mcp/config/scenario/baremetal/.gitkeep b/mcp/config/scenario/baremetal/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/mcp/config/scenario/baremetal/.gitkeep diff --git a/mcp/config/scenario/virtual/.gitkeep b/mcp/config/scenario/virtual/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/mcp/config/scenario/virtual/.gitkeep diff --git a/mcp/config/scenario/virtual/defaults.yaml b/mcp/config/scenario/virtual/defaults.yaml new file mode 100644 index 000000000..b841e88c9 --- /dev/null +++ b/mcp/config/scenario/virtual/defaults.yaml @@ -0,0 +1,6 @@ +base_image: https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img +virtual: + default: + vcpus: 2 + ram: 4096 + diff --git a/mcp/config/scenario/virtual/os-nosdn-nofeature-noha.yaml b/mcp/config/scenario/virtual/os-nosdn-nofeature-noha.yaml new file mode 100644 index 000000000..7208d89f2 --- /dev/null +++ b/mcp/config/scenario/virtual/os-nosdn-nofeature-noha.yaml @@ -0,0 +1,18 @@ +cluster: + domain: virtual-mcp-ocata-ovs.local + states: + - openstack + - neutron_compute + - networks +virtual: + nodes: + - cfg01 + - ctl01 + - cmp01 + - cmp02 + - gtw01 + ctl01: + vcpus: 4 + ram: 14336 + gtw01: + ram: 2048 diff --git a/mcp/config/scenario/virtual/os-nosdn-ovs-noha.yaml b/mcp/config/scenario/virtual/os-nosdn-ovs-noha.yaml new file mode 100644 index 000000000..ab882215b --- /dev/null +++ b/mcp/config/scenario/virtual/os-nosdn-ovs-noha.yaml @@ -0,0 +1,23 @@ +cluster: + domain: virtual-mcp-ocata-ovs-dpdk.local + states: + - dpdk + - openstack + - neutron_compute + - networks +virtual: + nodes: + - cfg01 + - ctl01 + - cmp01 + - cmp02 + - gtw01 + ctl01: + vcpus: 4 + ram: 14336 + gtw01: + ram: 2048 + cmp01: + ram: 6144 + cmp02: + ram: 6144 diff --git a/mcp/config/scenario/virtual/os-odl_l2-nofeature-noha.yaml b/mcp/config/scenario/virtual/os-odl_l2-nofeature-noha.yaml new file mode 100644 index 000000000..feb78c93a --- /dev/null +++ b/mcp/config/scenario/virtual/os-odl_l2-nofeature-noha.yaml @@ -0,0 +1,22 @@ +cluster: + domain: virtual-mcp-ocata-odl.local + states: + - opendaylight + - openstack + - networks +virtual: + nodes: + - cfg01 + - ctl01 + - cmp01 + - cmp02 + - gtw01 + - odl01 + ctl01: + vcpus: 4 + ram: 14336 + gtw01: + ram: 2048 + odl01: + vcpus: 4 + ram: 5120 diff --git a/mcp/config/scenario/virtual/os-odl_l3-nofeature-noha.yaml b/mcp/config/scenario/virtual/os-odl_l3-nofeature-noha.yaml new file mode 100644 index 000000000..de95e503d --- /dev/null +++ b/mcp/config/scenario/virtual/os-odl_l3-nofeature-noha.yaml @@ -0,0 +1,22 @@ +cluster: + domain: virtual-mcp-ocata-odl-router.local + states: + - opendaylight + - openstack + - networks +virtual: + nodes: + - cfg01 + - ctl01 + - cmp01 + - cmp02 + - gtw01 + - odl01 + ctl01: + vcpus: 4 + ram: 14336 + gtw01: + ram: 2048 + odl01: + vcpus: 4 + ram: 5120 |