Merge "Remove nameserver lookup dependency from Cisco ML2 CollectMacConfig."
[apex-tripleo-heat-templates.git] / puppet / extraconfig / all_nodes / neutron-ml2-cisco-nexus-ucsm.yaml
1 heat_template_version: 2015-04-30
2
3 description: Configure hieradata for Network Cisco configuration
4
5 parameters:
6   # Parameters passed from the parent template
7   controller_servers:
8     type: json
9   compute_servers:
10     type: json
11   blockstorage_servers:
12     type: json
13   objectstorage_servers:
14     type: json
15   cephstorage_servers:
16     type: json
17
18   # extra parameters passed via parameter_defaults
19   NetworkUCSMIp:
20     type: string
21     description: Cisco UCSM IP
22     default: 127.0.0.1
23   NetworkUCSMUsername:
24     type: string
25     description: Cisco UCSM username
26     default: admin
27   NetworkUCSMPassword:
28     type: string
29     description: Cisco UCSM password
30     default: password
31   NetworkUCSMHostList:
32     type: string
33     description: >
34       Mac address to service profile mapping for UCSM-controlled hosts
35       The format is
36       '<host1-mac>:<profile>, <host2-mac>:<profile>, ...'
37     default: ''
38   NetworkUCSMSupportedPciDevs:
39     type: string
40     description: Cisco UCSM SR-IOV and VM-FEX vendors supported
41     default: ''
42   NetworkNexusConfig:
43     type: json
44     description: Nexus switch configuration
45     default: {}
46   NetworkNexusManagedPhysicalNetwork:
47     type: string
48     description: The name of the physical_network
49     default: ''
50   NetworkNexusVlanNamePrefix:
51     type: string
52     description: A short prefix to prepend to the VLAN name
53     default: 'q-'
54   NetworkNexusSviRoundRobin:
55     type: boolean
56     description: A flag to enable round robin scheduling
57     default: false
58   NetworkNexusProviderVlanNamePrefix:
59     type: string
60     description:  A short prefix to prepend to the VLAN name
61     default: 'p-'
62   NetworkNexusPersistentSwitchConfig:
63     type: string
64     description: To make Nexus device persistent
65     default: false
66   NetworkNexusSwitchHeartbeatTime:
67     type: number
68     description: Time interval to check the state of the Nexus device
69     default: 0
70   NetworkNexusSwitchReplayCount:
71     type: number
72     description: Number of times to attempt config replay
73     default: 3
74   NetworkNexusProviderVlanAutoCreate:
75     type: boolean
76     description: A flag whether to manage the creation and removal of VLANs
77     default: true
78   NetworkNexusProviderVlanAutoTrunk:
79     type: boolean
80     description: A flag whether to manage the trunk ports on the Nexus
81     default: true
82   NetworkNexusVxlanGlobalConfig:
83     type: boolean
84     description: A flag whether to manage the VXLAN global settings
85     default: true
86   NetworkNexusHostKeyChecks:
87     type: boolean
88     description: enable strict host key checks when connecting to Nexus switches
89     default: false
90   NetworkNexusVxlanVniRanges:
91     type: string
92     description: VXLAN Network IDs that are available for tenant network
93     default: ''
94   NetworkNexusVxlanMcastRanges:
95     type: string
96     description: Multicast groups for the VXLAN interface.
97     default: ''
98
99
100 resources:
101   # First we lay down the base configuration via the static hieradata mappings
102   NetworkCiscoConfig:
103     type: OS::Heat::StructuredConfig
104     properties:
105       group: os-apply-config
106       config:
107         hiera:
108           datafiles:
109             neutron_cisco_data:
110               mapped_data:
111                 neutron::plugins::ml2::cisco::ucsm::ucsm_ip: {get_input: UCSM_ip}
112                 neutron::plugins::ml2::cisco::ucsm::ucsm_username: {get_input: UCSM_username}
113                 neutron::plugins::ml2::cisco::ucsm::ucsm_password: {get_input: UCSM_password}
114                 neutron::plugins::ml2::cisco::ucsm::ucsm_host_list: {get_input: UCSM_host_list}
115                 neutron::plugins::ml2::cisco::ucsm::supported_pci_devs:  {get_input: UCSMSupportedPciDevs}
116                 neutron::plugins::ml2::cisco::nexus::nexus_config: {get_input: NexusConfig}
117                 neutron::plugins::ml2::cisco::nexus::managed_physical_network: {get_input: NexusManagedPhysicalNetwork}
118                 neutron::plugins::ml2::cisco::nexus::vlan_name_prefix: {get_input: NexusVlanNamePrefix}
119                 neutron::plugins::ml2::cisco::nexus::svi_round_robin: {get_input: NexusSviRoundRobin}
120                 neutron::plugins::ml2::cisco::nexus::provider_vlan_name_prefix: {get_input: NexusProviderVlanNamePrefix}
121                 neutron::plugins::ml2::cisco::nexus::persistent_switch_config: {get_input: NexusPersistentSwitchConfig}
122                 neutron::plugins::ml2::cisco::nexus::switch_heartbeat_time: {get_input: NexusSwitchHeartbeatTime}
123                 neutron::plugins::ml2::cisco::nexus::switch_replay_count: {get_input: NexusSwitchReplayCount}
124                 neutron::plugins::ml2::cisco::nexus::provider_vlan_auto_create: {get_input: NexusProviderVlanAutoCreate}
125                 neutron::plugins::ml2::cisco::nexus::provider_vlan_auto_trunk: {get_input: NexusProviderVlanAutoTrunk}
126                 neutron::plugins::ml2::cisco::nexus::vxlan_global_config: {get_input: NexusVxlanGlobalConfig}
127                 neutron::plugins::ml2::cisco::nexus::host_key_checks: {get_input: NexusHostKeyChecks}
128                 neutron::plugins::ml2::cisco::type_nexus_vxlan::vni_ranges: {get_input: NexusVxlanVniRanges}
129                 neutron::plugins::ml2::cisco::type_nexus_vxlan::mcast_ranges: {get_input: NexusVxlanMcastRanges}
130
131   NetworkCiscoDeployment:
132     type: OS::Heat::StructuredDeployments
133     properties:
134       config: {get_resource: NetworkCiscoConfig}
135       servers:  {get_param: controller_servers}
136       input_values:
137         UCSM_ip: {get_param: NetworkUCSMIp}
138         UCSM_username: {get_param: NetworkUCSMUsername}
139         UCSM_password: {get_param: NetworkUCSMPassword}
140         UCSM_host_list: {get_attr: [MappingToUCSMDeploymentsController, deploy_stdout]}
141         UCSMSupportedPciDevs: {get_param: NetworkUCSMSupportedPciDevs}
142         NexusConfig: {get_attr: [MappingToNexusDeploymentsController, deploy_stdout]}
143         NexusManagedPhysicalNetwork: {get_param: NetworkNexusManagedPhysicalNetwork}
144         NexusVlanNamePrefix: {get_param: NetworkNexusVlanNamePrefix}
145         NexusSviRoundRobin: {get_param: NetworkNexusSviRoundRobin}
146         NexusProviderVlanNamePrefix: {get_param: NetworkNexusProviderVlanNamePrefix}
147         NexusPersistentSwitchConfig: {get_param: NetworkNexusPersistentSwitchConfig}
148         NexusSwitchHeartbeatTime: {get_param: NetworkNexusSwitchHeartbeatTime}
149         NexusSwitchReplayCount: {get_param: NetworkNexusSwitchReplayCount}
150         NexusProviderVlanAutoCreate: {get_param: NetworkNexusProviderVlanAutoCreate}
151         NexusProviderVlanAutoTrunk: {get_param: NetworkNexusProviderVlanAutoTrunk}
152         NexusVxlanGlobalConfig: {get_param: NetworkNexusVxlanGlobalConfig}
153         NexusHostKeyChecks: {get_param: NetworkNexusHostKeyChecks}
154         NexusVxlanVniRanges: {get_param: NetworkNexusVxlanVniRanges}
155         NexusVxlanMcastRanges: {get_param: NetworkNexusVxlanMcastRanges}
156
157   # Now we collect the Mac->Hostname mappings for all nodes, which enables
158   # calculation of the neutron::plugins::ml2::cisco::nexus::nexus_config data
159   CollectMacConfig:
160     type: OS::Heat::SoftwareConfig
161     properties:
162       group: script
163       config: |
164         #!/bin/sh
165         MACS=$(ifconfig  | grep ether | awk '{print $2}' | tr "\n" " ")
166         HOST_FQDN=$(hostname -f)
167         if [ -z "$HOST_FQDN" ]; then
168           HOSTNAME=$(hostname -s)
169           # hardcoding the domain name to avoid DNS lookup dependency
170           # same type of hardcoding appears elsewhere
171           # --ie. controller-puppet.yaml
172           # FIXME_HOSTNAME_DOMAIN_HARDCODE
173           echo "$HOSTNAME.localdomain $MACS"
174         else
175           echo "$HOST_FQDN $MACS"
176         fi
177
178   CollectMacDeploymentsController:
179     type: OS::Heat::SoftwareDeployments
180     properties:
181       servers:  {get_param: controller_servers}
182       config: {get_resource: CollectMacConfig}
183       actions: ['CREATE'] # Only do this on CREATE
184
185   CollectMacDeploymentsCompute:
186     type: OS::Heat::SoftwareDeployments
187     properties:
188       servers:  {get_param: compute_servers}
189       config: {get_resource: CollectMacConfig}
190       actions: ['CREATE'] # Only do this on CREATE
191
192   CollectMacDeploymentsBlockStorage:
193     type: OS::Heat::SoftwareDeployments
194     properties:
195       servers:  {get_param: blockstorage_servers}
196       config: {get_resource: CollectMacConfig}
197       actions: ['CREATE'] # Only do this on CREATE
198
199   CollectMacDeploymentsObjectStorage:
200     type: OS::Heat::SoftwareDeployments
201     properties:
202       servers:  {get_param: objectstorage_servers}
203       config: {get_resource: CollectMacConfig}
204       actions: ['CREATE'] # Only do this on CREATE
205
206   CollectMacDeploymentsCephStorage:
207     type: OS::Heat::SoftwareDeployments
208     properties:
209       servers:  {get_param: cephstorage_servers}
210       config: {get_resource: CollectMacConfig}
211       actions: ['CREATE'] # Only do this on CREATE
212
213   # Now we calculate the additional nexus config based on the mappings
214   MappingToNexusConfig:
215     type: OS::Heat::SoftwareConfig
216     properties:
217       group: script
218       inputs:
219       - name: controller_mappings
220       - name: compute_mappings
221       - name: blockstorage_mappings
222       - name: objectstorage_mappings
223       - name: cephstorage_mappings
224       - name: nexus_config
225       config: |
226         #!/bin/python
227         import ast
228         import json
229         import os
230         from copy import deepcopy
231
232         mappings = ['controller_mappings',
233                     'compute_mappings',
234                     'blockstorage_mappings',
235                     'objectstorage_mappings',
236                     'cephstorage_mappings',
237                     'nexus_config']
238         mapdict_list = []
239         nexus = {}
240         for map_name in mappings:
241           f_name = '/root/' + map_name
242           map_data = os.getenv(map_name, "Nada")
243           with open(f_name, 'a') as f:
244             f.write(map_data)
245           if map_data is not "Nada":
246             if map_name is not 'nexus_config':
247               mapdict_list.append(ast.literal_eval(map_data))
248             else:
249               nexus = ast.literal_eval(map_data)
250
251         mac2host = {}
252         for mapdict in mapdict_list:
253           for (listnum, host2mac_list) in mapdict.iteritems():
254             vals = host2mac_list.rstrip().split()
255             for mac in vals[1:]:
256               mac2host[mac.lower()] = vals[0]
257
258         with open('/root/mac2host', 'a') as f:
259           f.write(str(mac2host))
260
261         # now we have mac to host, map host to switchport in hieradata
262         # nexus = ast.literal_eval(os.getenv('nexus_config', None))
263         nexus_cp = deepcopy(nexus)
264         for nexus_switch in nexus:
265           for (mac,swport) in nexus[nexus_switch]['servers'].iteritems():
266             lmac=mac.lower()
267             if lmac in mac2host:
268               if mac2host[lmac] in nexus_cp[nexus_switch]['servers']:
269                 nexus_cp[nexus_switch]['servers'][mac2host[lmac]]['ports'] += ',' + swport['ports']
270               else:
271                 nexus_cp[nexus_switch]['servers'][mac2host[lmac]] = swport
272             del nexus_cp[nexus_switch]['servers'][mac]
273         # Note this echo means you can view the data via heat deployment-show
274         print json.dumps(nexus_cp)
275
276   MappingToNexusDeploymentsController:
277     type: OS::Heat::SoftwareDeployment
278     properties:
279       server:  {get_param: [controller_servers, '0']}
280       config: {get_resource: MappingToNexusConfig}
281       input_values:
282         # FIXME(shardy): It'd be more convenient if we could join these
283         # items together but because the returned format is a map (not a list)
284         # we can't use list_join or str_replace.  Possible Heat TODO.
285         controller_mappings: {get_attr: [CollectMacDeploymentsController, deploy_stdouts]}
286         compute_mappings: {get_attr: [CollectMacDeploymentsCompute, deploy_stdouts]}
287         blockstorage_mappings: {get_attr: [CollectMacDeploymentsBlockStorage, deploy_stdouts]}
288         objectstorage_mappings: {get_attr: [CollectMacDeploymentsObjectStorage, deploy_stdouts]}
289         cephstorage_mappings: {get_attr: [CollectMacDeploymentsCephStorage, deploy_stdouts]}
290         nexus_config: {get_param: NetworkNexusConfig}
291       actions: ['CREATE'] # Only do this on CREATE
292
293   MappingToUCSMConfig:
294     type: OS::Heat::SoftwareConfig
295     properties:
296       group: script
297       inputs:
298        - name: ucsm_config
299       config: |
300         #!/bin/python
301         import ast
302         import os
303         with open('/root/mac2host', 'r') as f:
304           s=f.read()
305           m2h=ast.literal_eval(s)
306         ucs_config = os.getenv('ucsm_config', "Nada")
307         ucs_data = []
308         lines = ucs_config.split(',')
309         for line in lines:
310           entry=line.rsplit(":",1)
311           mac = entry[0].lower().strip()
312           if mac in m2h:
313             ucs_data.append(m2h[mac] + ":" + entry[1])
314
315         print ", ".join(ucs_data)
316
317
318   MappingToUCSMDeploymentsController:
319     type: OS::Heat::SoftwareDeployment
320     depends_on: MappingToNexusDeploymentsController
321     properties:
322       server:  {get_param: [controller_servers, '0']}
323       config: {get_resource: MappingToUCSMConfig}
324       input_values:
325         ucsm_config: {get_param: NetworkUCSMHostList}
326       actions: ['CREATE'] # Only do this on CREATE
327
328 outputs:
329   # The Deployment applying the hieradata outputs the derived config-id, which
330   # changes if the input_values change, so if the stdouts from
331   # NetworkCiscoDeployment change, we need to reapply puppet (which will
332   # happen if we return a different config_identifier)
333   config_identifier:
334     value: {get_attr: [NetworkCiscoDeployment, deploy_stdouts]}