df8be52ac7
When Network Service (NS) is supported in Tacker, we can launch multiple VNFFGs by initiating NS. Because each VNFFG can have different 'symmetrical' value, we should support dynamic 'symmetrical' parameter for each VNFFG in VNFFG descriptor. This feature will add 'symmetrical' as a property of forwarding path, so users can set 'symmetrical' value to 'true' or 'false' to change symmetrical value of a port chain in networking-sfc. Change-Id: Ie9a6abe96141954e95902cd426abafa10d744236
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0
|
|
|
|
description: Sample symmetrical VNFFG template (network_dst_port_id and ip_dst_prefix must be set)
|
|
|
|
topology_template:
|
|
|
|
node_templates:
|
|
|
|
Forwarding_path1:
|
|
type: tosca.nodes.nfv.FP.Tacker
|
|
description: creates path (CP12->CP22)
|
|
properties:
|
|
id: 51
|
|
symmetrical: true
|
|
policy:
|
|
type: ACL
|
|
criteria:
|
|
- network_src_port_id: e8463552-f236-4127-afc2-571f2b1d81bb
|
|
network_dst_port_id: 8bff0400-a7b8-41eb-bbef-d7cff67a7361
|
|
ip_dst_prefix: 10.10.0.9/24
|
|
destination_port_range: 80-1024
|
|
ip_proto: 6
|
|
path:
|
|
- forwarder: VNFD1
|
|
capability: CP12
|
|
- forwarder: VNFD2
|
|
capability: CP22
|
|
|
|
groups:
|
|
VNFFG1:
|
|
type: tosca.groups.nfv.VNFFG
|
|
description: HTTP to Corporate Net
|
|
properties:
|
|
vendor: tacker
|
|
version: 1.0
|
|
number_of_endpoints: 2
|
|
dependent_virtual_link: [VL12,VL22]
|
|
connection_point: [CP12,CP22]
|
|
constituent_vnfs: [VNFD1,VNFD2]
|
|
members: [Forwarding_path1]
|