summaryrefslogtreecommitdiffstats
path: root/tosca2heat/tosca-parser/toscaparser/extensions/nfv/tests/data/vRNC/Definitions/rnc_definition.yaml
blob: 52fbd4cf3b466abfac283ef85d4139e07b9b3f19 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
##    Licensed under the Apache License, Version 2.0 (the "License"); you may
##    not use this file except in compliance with the License. You may obtain
##    a copy of the License at
##
##         http://www.apache.org/licenses/LICENSE-2.0
##
##    Unless required by applicable law or agreed to in writing, software
##    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
##    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
##    License for the specific language governing permissions and limitations
##    under the License.

tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0

#metadata:
#  template_name: tosca_simple_profile_for_nfv_vRNC
#  template_author: opnfv_parser_project
#  template_version: tosca_simple_profile_for_nfv_1_0

# Optional description of the definitions inside the file.
description: >
  NFV TOSCA simple profile for RNC types
    1. Compute Node MM, CM, DM, LB...
       1.1 MM: MaintainModule;
       1.2 CM: Control Module;
       1.3 DM: Data Module;
       1.4 LB: LineCard Module.
    2. Network Node VL and CP

# The import section shall be ignored if the value of tosca_definitions_version
# is tosca_simple_profile_for_nfv_1_0_0, otherwise will be needed.

# list of node type definitions
node_types:
  rnc.nodes.VNF:
    derived_from: tosca.nodes.nfv.VNF
    properties:
      vnftype:
        type: string
        description: type of the RNC
        default:  UMTS
        required: false
        constraints:
          - valid_values: [ TDS-CDMA, UMTS, CDMA ]
    attributes:
      private_ip_of_MM:
        type: string
        description: IP of master MM
      private_ip_of_CM:
        type: string
        description: IP of master CM
      private_ip_of_DM:
        type: string
        description: IP of master DM
      private_ip_of_LB:
        type: string
        description: IP of master LB
    requirements:
      - virtualLink_VNFM:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL
      - virtualLink_EMS:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL
      - virtualLink_TRAFFIC:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL

  rnc.nodes.compute.MM:
    derived_from: tosca.nodes.nfv.VDU
    properties:
      activestatus:
        type: integer
        required: false
        description: 1 for active or 0 for passive
        constraints:
            - valid_values: [ 0, 1 ]
      id:
        type: string
        defaule: MM
        required: false
        description: >
          A identifier of this VDU within the scope of the VNFD,
          including version functional description and other
          identification information.

  rnc.nodes.compute.CM:
    derived_from: tosca.nodes.nfv.VDU
    properties:
      activestatus:
        type: integer
        required: false
        description: 1 for active or 0 for passive
        constraints:
          - valid_values: [ 0, 1 ]

  rnc.nodes.compute.DM:
    derived_from: tosca.nodes.nfv.VDU

  rnc.nodes.compute.LB:
    derived_from: tosca.nodes.nfv.VDU

  rnc.nodes.BlockStorage:
    derived_from: tosca.nodes.BlockStorage

  rnc.nodes.VL:
    derived_from: tosca.nodes.nfv.VL

  rnc.nodes.CP:
    derived_from: tosca.nodes.nfv.CP

  rnc.nodes.CP.MM:
    derived_from: tosca.nodes.nfv.CP
    # It's ok here because of the weakly validation.

  rnc.nodes.CP.CM:
    derived_from: tosca.nodes.nfv.CP
    requirements:
      - virtualLink:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL
      - virtualBinding:
          capability: tosca.capabilities.nfv.VirtualBindable
          relationship: tosca.relationships.nfv.VirtualBindsTo
          node: rnc.nodes.compute.CM

  rnc.nodes.CP.DM:
    derived_from: tosca.nodes.nfv.CP
    requirements:
      - virtualLink:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL
      - virtualBinding:
          capability: tosca.capabilities.nfv.VirtualBindable
          relationship: tosca.relationships.nfv.VirtualBindsTo
          node: rnc.nodes.compute.DM

  rnc.nodes.CP.LB:
    derived_from: tosca.nodes.nfv.CP
    requirements:
      - virtualLink:
          capability: tosca.capabilities.nfv.VirtualLinkable
          relationship: tosca.relationships.nfv.VirtualLinksTo
          node: rnc.nodes.VL
      - virtualBinding:
          capability: tosca.capabilities.nfv.VirtualBindable
          relationship: tosca.relationships.nfv.VirtualBindsTo
          node: rnc.nodes.compute.LB

# list of capability type definitions
capability_types:
  rnc.capabilities.Container:
    derived_from: tosca.capabilities.Container
    properties:
      swap:
        type: scalar-unit.size
        description: swap info
        required: false
        default: 0
        constraints:
            - greater_or_equal: 0 MB
      iops:
        type: integer
        description: IOPS for disk
        required: false
        default: 0
        constraints:
          - greater_than: 0