blob: b7f3100b48969958bce2904b4983c1dee3922029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0
description: Template for deploying a single server with predefined properties.
metadata:
template_name: TOSCA NFV Sample Template
policy_types:
tosca.policies.Placement.Geolocation:
description: Geolocation policy
derived_from: tosca.policies.Placement
topology_template:
node_templates:
VNF1:
type: tosca.nodes.nfv.VNF
properties:
id: vnf1
vendor: acmetelco
version: 1.0
VNF2:
type: tosca.nodes.nfv.VNF
properties:
id: vnf2
vendor: ericsson
version: 1.0
VNF3:
type: tosca.nodes.nfv.VNF
properties:
id: vnf3
vendor: huawei
version: 1.0
policies:
- rule1:
type: tosca.policies.Placement.Geolocation
targets: [ VNF1 ]
properties:
region: [ us-west-1 ]
- rule2:
type: tosca.policies.Placement.Geolocation
targets: [ VNF2, VNF3 ]
properties:
region: [ us-west-1 , us-west-2 ]
|