diff options
author | Bryan Sullivan <bryan.sullivan@att.com> | 2016-10-17 14:50:36 -0700 |
---|---|---|
committer | Bryan Sullivan <bryan.sullivan@att.com> | 2016-10-17 14:50:36 -0700 |
commit | ab5a8c211b1ff205ffbd5b5261da14baf2f79794 (patch) | |
tree | 196f6a1762edc2cb066fb146497cc3b294762b90 /tests/blueprints | |
parent | 6820172fcee7912f111c772ca11eb64c6b8a4342 (diff) |
Expand blueprint for LB and 2nd app server
JIRA: VES-1
Change-Id: I244b3c7dfbffe0b2766bde54b61452675679ae45
Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
Diffstat (limited to 'tests/blueprints')
-rwxr-xr-x | tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml | 101 |
1 files changed, 81 insertions, 20 deletions
diff --git a/tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml b/tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml index fc9e1b8..d17e300 100755 --- a/tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml +++ b/tests/blueprints/tosca-vnfd-hello-ves/blueprint.yaml @@ -23,7 +23,7 @@ topology_template: param0: key1 param1: key2 - CP1: + CP11: type: tosca.nodes.nfv.CP.Tacker properties: management: true @@ -34,7 +34,7 @@ topology_template: - virtualBinding: node: VDU1 - CP2: + CP12: type: tosca.nodes.nfv.CP.Tacker properties: anti_spoofing_protection: false @@ -44,19 +44,44 @@ topology_template: - virtualBinding: node: VDU1 - VL1: - type: tosca.nodes.nfv.VL + VDU2: + type: tosca.nodes.nfv.VDU.Tacker + capabilities: + nfv_compute: + properties: + num_cpus: 1 + mem_size: 1024 MB + disk_size: 4 GB properties: - network_name: vnf_mgmt - vendor: Tacker + image: models-xenial-server + availability_zone: nova + mgmt_driver: noop + config: | + param0: key1 + param1: key2 - VL2: - type: tosca.nodes.nfv.VL + CP21: + type: tosca.nodes.nfv.CP.Tacker properties: - network_name: vnf_private - vendor: Tacker + management: true + anti_spoofing_protection: false + requirements: + - virtualLink: + node: VL1 + - virtualBinding: + node: VDU2 - VDU2: + CP22: + type: tosca.nodes.nfv.CP.Tacker + properties: + anti_spoofing_protection: false + requirements: + - virtualLink: + node: VL2 + - virtualBinding: + node: VDU2 + + VDU3: type: tosca.nodes.nfv.VDU.Tacker capabilities: nfv_compute: @@ -72,36 +97,72 @@ topology_template: param0: key1 param1: key2 - CP3: + CP31: type: tosca.nodes.nfv.CP.Tacker properties: management: true anti_spoofing_protection: false requirements: - virtualLink: - node: VL3 + node: VL1 - virtualBinding: - node: VDU2 + node: VDU3 - CP4: + CP32: type: tosca.nodes.nfv.CP.Tacker properties: anti_spoofing_protection: false requirements: - virtualLink: - node: VL4 + node: VL2 - virtualBinding: - node: VDU2 + node: VDU3 + + VDU4: + type: tosca.nodes.nfv.VDU.Tacker + capabilities: + nfv_compute: + properties: + num_cpus: 1 + mem_size: 1024 MB + disk_size: 4 GB + properties: + image: models-xenial-server + availability_zone: nova + mgmt_driver: noop + config: | + param0: key1 + param1: key2 - VL3: + CP41: + type: tosca.nodes.nfv.CP.Tacker + properties: + management: true + anti_spoofing_protection: false + requirements: + - virtualLink: + node: VL1 + - virtualBinding: + node: VDU4 + + CP42: + type: tosca.nodes.nfv.CP.Tacker + properties: + anti_spoofing_protection: false + requirements: + - virtualLink: + node: VL2 + - virtualBinding: + node: VDU4 + + VL1: type: tosca.nodes.nfv.VL properties: network_name: vnf_mgmt vendor: Tacker - VL4: + VL2: type: tosca.nodes.nfv.VL properties: network_name: vnf_private vendor: Tacker - |