blob: b992a4ea9ed42a80f53a5f3c556de7bbe0240a2f [file] [log] [blame]
Matteo Scandolo3896c472017-08-01 13:31:42 -07001
2{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
18
Zack Williamsa2763112017-01-03 11:38:38 -070019tosca_definitions_version: tosca_simple_yaml_1_0
20
21imports:
22 - custom_types/xos.yaml
23
24description: Configures VTN networking for OpenStack compute nodes
25
26topology_template:
27 node_templates:
28
29# VTN ONOS app, fully defined in vtn-service.yaml
30 service#ONOS_CORD:
31 type: tosca.nodes.ONOSService
32 properties:
33 no-delete: true
34 no-create: true
35 no-update: true
36
37{% if use_fabric %}
38# Fabric, fully defined in fabric.yaml
39 service#ONOS_Fabric:
40 type: tosca.nodes.ONOSService
41 properties:
42 no-delete: true
43 no-create: true
44 no-update: true
45{% endif %}
46
47# VTN networking for OpenStack Compute Nodes
Zack Williams5223dd92017-02-28 23:38:02 -070048{% for node in groups['compute'] %}
Zack Williams6ccbed22017-06-26 13:18:05 -070049{% for ext_if in compute_external_interfaces %}
50{% set ansible_ext_if = 'ansible_' ~ ext_if | regex_replace('\W', '_') %}
51{% if hostvars[node][ansible_ext_if] is defined and 'ipv4' in hostvars[node][ansible_ext_if] %}
52{% set node_interface = hostvars[node][ansible_ext_if] %}
Zack Williamsa2763112017-01-03 11:38:38 -070053
Zack Williams6ccbed22017-06-26 13:18:05 -070054# Compute node: {{ node }}, with interface {{ ansible_ext_if }}
Zack Williamsa2763112017-01-03 11:38:38 -070055 {{ hostvars[node]['ansible_hostname'] }}:
56 type: tosca.nodes.Node
57 properties:
58 no-delete: true
59 no-create: true
60 no-update: true
61
62# VTN bridgeId field for node {{ hostvars[node]['ansible_hostname'] }}
63 {{ hostvars[node]['ansible_hostname'] }}_bridgeId_tag:
64 type: tosca.nodes.Tag
65 properties:
66 name: bridgeId
Zack Williams2478b302017-02-14 10:42:55 -070067 value: of:0000{{ node_interface['macaddress'] | hwaddr('bare') }}
Zack Williamsa2763112017-01-03 11:38:38 -070068 requirements:
69 - target:
70 node: {{ hostvars[node]['ansible_hostname'] }}
71 relationship: tosca.relationships.TagsObject
72 - service:
73 node: service#ONOS_CORD
74 relationship: tosca.relationships.MemberOfService
75
76# VTN dataPlaneIntf field for node {{ hostvars[node]['ansible_hostname'] }}
77 {{ hostvars[node]['ansible_hostname'] }}_dataPlaneIntf_tag:
78 type: tosca.nodes.Tag
79 properties:
80 name: dataPlaneIntf
81 value: fabric
82 requirements:
83 - target:
84 node: {{ hostvars[node]['ansible_hostname'] }}
85 relationship: tosca.relationships.TagsObject
86 - service:
87 node: service#ONOS_CORD
88 relationship: tosca.relationships.MemberOfService
89
90# VTN dataPlaneIp field for node {{ hostvars[node]['ansible_hostname'] }}
91 {{ hostvars[node]['ansible_hostname'] }}_dataPlaneIp_tag:
92 type: tosca.nodes.Tag
93 properties:
94 name: dataPlaneIp
Zack Williams2478b302017-02-14 10:42:55 -070095 value: {{ ( node_interface['ipv4']['address'] ~ '/' ~ node_interface['ipv4']['netmask'] ) | ipaddr('cidr') }}
Zack Williamsa2763112017-01-03 11:38:38 -070096 requirements:
97 - target:
98 node: {{ hostvars[node]['ansible_hostname'] }}
99 relationship: tosca.relationships.TagsObject
100 - service:
101 node: service#ONOS_CORD
102 relationship: tosca.relationships.MemberOfService
103
104{% if use_management_hosts %}
105 # VTN management interface field for node {{ hostvars[node]['ansible_hostname'] }}
106 {{ hostvars[node]['ansible_hostname'] }}_hostManagementIface_tag:
107 type: tosca.nodes.Tag
108 properties:
109 name: hostManagementIface
110 value: {{ vtn_management_host_net_interface }}
111 requirements:
112 - target:
113 node: {{ hostvars[node]['ansible_hostname'] }}
114 relationship: tosca.relationships.TagsObject
115 - service:
116 node: service#ONOS_CORD
117 relationship: tosca.relationships.MemberOfService
118{% endif %}
119
120{% if use_fabric %}
121 # Fabric location field for node {{ hostvars[node]['ansible_hostname'] }}
122 {{ hostvars[node]['ansible_hostname'] }}_location_tag:
123 type: tosca.nodes.Tag
124 properties:
125 name: location
126 value: of:0000000000000001/1
127 requirements:
128 - target:
129 node: {{ hostvars[node]['ansible_hostname'] }}
130 relationship: tosca.relationships.TagsObject
131 - service:
132 node: service#ONOS_Fabric
133 relationship: tosca.relationships.MemberOfService
134{% endif %}
Zack Williams6ccbed22017-06-26 13:18:05 -0700135
Zack Williamsa2763112017-01-03 11:38:38 -0700136{% endif %}
137{% endfor %}
Zack Williams6ccbed22017-06-26 13:18:05 -0700138{% endfor %}
Zack Williamsa2763112017-01-03 11:38:38 -0700139