Env variables for Health Check SDC Distribution
[demo.git] / heat / ONAP / onap_openstack_light.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4 #
5 #
6 # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #        http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #==================LICENSE_END============================================
20 #
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 #
23 ##########################################################################
24
25 heat_template_version: 2015-10-15
26
27 description: Heat template to install ONAP components
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36
37   ##############################################
38   #                                            #
39   # Parameters used across all ONAP components #
40   #                                            #
41   ##############################################
42
43   public_net_id:
44     type: string
45     description: The ID of the Public network for floating IP address allocation
46
47   public_net_name:
48     type: string
49     description: The name of the Public network referred by public_net_id
50
51   ubuntu_1404_image:
52     type: string
53     description: Name of the Ubuntu 14.04 image
54
55   ubuntu_1604_image:
56     type: string
57     description: Name of the Ubuntu 16.04 image
58
59   flavor_small:
60     type: string
61     description: Name of the Small Flavor supported by the cloud provider
62
63   flavor_medium:
64     type: string
65     description: Name of the Medium Flavor supported by the cloud provider
66
67   flavor_large:
68     type: string
69     description: Name of the Large Flavor supported by the cloud provider
70
71   flavor_xlarge:
72     type: string
73     description: Name of the Extra Large Flavor supported by the cloud provider
74
75   flavor_xxlarge:
76     type: string
77     description: Name of the Extra Extra Large Flavor supported by the cloud provider
78
79   vm_base_name:
80     type: string
81     description: Base name of ONAP VMs
82
83   key_name:
84     type: string
85     description: Public/Private key pair name
86
87   pub_key:
88     type: string
89     description: Public key to be installed on the compute instance
90
91   nexus_repo:
92     type: string
93     description: Complete URL for the Nexus repository.
94
95   nexus_docker_repo:
96     type: string
97     description: Complete URL for the Nexus repository for docker images.
98
99   nexus_username:
100     type: string
101     description: Nexus Repository username
102
103   nexus_password:
104     type: string
105     description: Nexus Repository Password
106
107   artifacts_version:
108     type: string
109     description: Artifacts version of ONAP components
110
111   dmaap_topic:
112     type: string
113     description: DMaaP Topic name
114
115   openstack_tenant_id:
116     type: string
117     description: OpenStack tenant ID
118
119   openstack_tenant_name:
120     type: string
121     description: OpenStack tenant name (matching with the openstack_tenant_id)
122
123   openstack_username:
124     type: string
125     description: OpenStack username
126
127   openstack_auth_method:
128     type: string
129     description: OpenStack authentication method (password VS. api-key)
130
131   openstack_api_key:
132     type: string
133     description: OpenStack password or API Key
134
135   horizon_url:
136     type: string
137     description: URL of OpenStack Horizon
138
139   keystone_url:
140     type: string
141     description: URL of OpenStack Keystone
142
143   cloud_env:
144     type: string
145     description: Cloud Provider Name in lower case
146
147   openstack_region:
148     type: string
149     description: Region where the DCAE controller will spin the VMs
150
151   ######################
152   #                    #
153   # Network parameters #
154   #                    #
155   ######################
156
157   dns_list:
158     type: comma_delimited_list
159     description: List of External DNS for OAM ONAP network
160
161   external_dns:
162     type: string
163     description: Public IP of the external DNS for ONAP network
164
165   dns_forwarder:
166     type: string
167     description: the forwarder address for setting up ONAP's private DNS server
168
169   oam_network_cidr:
170     type: string
171     description: CIDR of the OAM ONAP network
172
173   ### Private IP addresses ###
174   aai1_ip_addr:
175     type: string
176   aai2_ip_addr:
177     type: string
178   appc_ip_addr:
179     type: string
180   dcae_ip_addr:
181     type: string
182   dns_ip_addr:
183     type: string
184   so_ip_addr:
185     type: string
186   mr_ip_addr:
187     type: string
188   policy_ip_addr:
189     type: string
190   portal_ip_addr:
191     type: string
192   robot_ip_addr:
193     type: string
194   sdc_ip_addr:
195     type: string
196   sdnc_ip_addr:
197     type: string
198   vid_ip_addr:
199     type: string
200   clamp_ip_addr:
201     type: string
202   openo_ip_addr:
203     type: string
204   music_ip_addr:
205     type: string
206   oof_ip_addr:
207     type: string
208   aaf_ip_addr:
209     type: string
210   nbi_ip_addr:
211     type: string
212
213   ###########################
214   #                         #
215   # Parameters used by DCAE #
216   #                         #
217   ###########################
218
219   dnsaas_config_enabled:
220     type: string
221     description: whether the DNSaaS configuration section is enabled
222
223   dnsaas_region:
224     type: string
225     description: the region of the cloud instance providing the Designate DNS as a Service
226
227   dnsaas_keystone_url:
228     type: string
229     description: the keystone URL of the cloud instance providing the Designate DNS as a Service
230
231   dnsaas_username:
232     type: string
233     description: the username of the cloud instance providing the Designate DNS as a Service
234
235   dnsaas_password:
236     type: string
237     description: the password of the cloud instance providing the Designate DNS as a Service
238
239   dnsaas_tenant_name:
240     type: string
241     description: the name of the tenant in the cloud instance providing the Designate DNS as a Service
242
243   dcae_keystone_url:
244     type: string
245     description: the keystone URL for DCAE to use (via MultiCloud)
246
247   dcae_private_key:
248     type: string
249     description: the private key of the key-apir used between the DCAE bootstrap container and DCAE VMs
250
251   dcae_public_key:
252     type: string
253     description: the prublic key of the key-apir used between the DCAE bootstrap container and DCAE VMs
254
255   dcae_centos_7_image:
256     type: string
257     description: the id/name of the CentOS 7 VM imange
258
259   dcae_domain:
260     type: string
261     description: the top level domain to register DCAE VMs (the zone will be random-str.dcae_domain)
262
263   #####################
264   #                   #
265   # ONAP repositories #
266   #                   #
267   #####################
268
269   aai_repo:
270     type: string
271   appc_repo:
272     type: string
273   mr_repo:
274     type: string
275   so_repo:
276     type: string
277   policy_repo:
278     type: string
279   portal_repo:
280     type: string
281   robot_repo:
282     type: string
283   sdc_repo:
284     type: string
285   sdnc_repo:
286     type: string
287   vid_repo:
288     type: string
289   clamp_repo:
290     type: string
291   vnfsdk_repo:
292     type: string
293
294   ################################
295   #                              #
296   # Docker versions and branches #
297   #                              #
298   ################################
299
300   aai_docker:
301     type: string
302   aai_sparky_docker:
303     type: string
304   appc_docker:
305     type: string
306   so_docker:
307     type: string
308   dcae_docker:
309     type: string
310   policy_docker:
311     type: string
312   portal_docker:
313     type: string
314   robot_docker:
315     type: string
316   sdc_docker:
317     type: string
318   sdnc_docker:
319     type: string
320   vid_docker:
321     type: string
322   clamp_docker:
323     type: string
324   msb_docker:
325     type: string
326   mvim_docker:
327     type: string
328   uui_docker:
329     type: string
330   esr_docker:
331     type: string
332   dgbuilder_docker:
333     type: string
334   cli_docker:
335     type: string
336   music_docker:
337     type: string
338   oof_docker:
339     type: string
340   aaf_docker:
341     type: string
342   nbi_docker:
343     type: string
344
345   vfc_nokia_docker:
346     type: string
347   vfc_nokiav2_docker:
348     type: string
349   vfc_ztevnfmdriver_docker:
350     type: string
351   vfc_ztesdncdriver_docker:
352     type: string
353   vfc_vnfres_docker:
354     type: string
355   vfc_vnfmgr_docker:
356     type: string
357   vfc_vnflcm_docker:
358     type: string
359   vfc_resmanagement_docker:
360     type: string
361   vfc_nslcm_docker:
362     type: string
363   vfc_huawei_docker:
364     type: string
365   vfc_jujudriver_docker:
366     type: string
367   vfc_gvnfmdriver_docker:
368     type: string
369   vfc_emsdriver_docker:
370     type: string
371   vfc_catalog_docker:
372     type: string
373   vfc_wfengine_mgrservice_docker:
374     type: string
375   vfc_wfengine_activiti_docker:
376     type: string
377
378   cbam_username:
379     type: string
380   cbam_password:
381     type: string
382   cbam_ip:
383     type: string
384
385   aai_branch:
386     type: string
387   appc_branch:
388     type: string
389   so_branch:
390     type: string
391   mr_branch:
392     type: string
393   policy_branch:
394     type: string
395   portal_branch:
396     type: string
397   robot_branch:
398     type: string
399   sdc_branch:
400     type: string
401   sdnc_branch:
402     type: string
403   vid_branch:
404     type: string
405   clamp_branch:
406     type: string
407   vnfsdk_branch:
408     type: string
409
410
411 #############
412 #           #
413 # RESOURCES #
414 #           #
415 #############
416
417 resources:
418   random-str:
419     type: OS::Heat::RandomString
420     properties:
421       length: 4
422
423   # Public key used to access ONAP components
424   vm_key:
425     type: OS::Nova::KeyPair
426     properties:
427       name:
428         str_replace:
429           template: base_rand
430           params:
431             base: { get_param: key_name }
432             rand: { get_resource: random-str }
433       public_key: { get_param: pub_key }
434       save_private_key: false
435
436
437   # ONAP security group
438   onap_sg:
439     type: OS::Neutron::SecurityGroup
440     properties:
441       name:
442         str_replace:
443           template: base_rand
444           params:
445             base: onap_sg
446             rand: { get_resource: random-str }
447       description: security group used by ONAP
448       rules:
449         # All egress traffic
450         - direction: egress
451           ethertype: IPv4
452         - direction: egress
453           ethertype: IPv6
454         # ingress traffic
455         # ICMP
456         - protocol: icmp
457         - protocol: udp
458           port_range_min: 1
459           port_range_max: 65535
460         - protocol: tcp
461           port_range_min: 1
462           port_range_max: 65535
463
464
465
466   # ONAP management private network
467   oam_onap:
468     type: OS::Neutron::Net
469     properties:
470       name:
471         str_replace:
472           template: oam_onap_rand
473           params:
474             rand: { get_resource: random-str }
475
476   oam_onap_subnet:
477     type: OS::Neutron::Subnet
478     properties:
479       name:
480         str_replace:
481           template: oam_onap_rand
482           params:
483             rand: { get_resource: random-str }
484       network_id: { get_resource: oam_onap }
485       cidr: { get_param: oam_network_cidr }
486       dns_nameservers: { get_param: dns_list }
487
488   router:
489     type: OS::Neutron::Router
490     properties:
491       external_gateway_info:
492         network: { get_param: public_net_id }
493
494   router_interface:
495     type: OS::Neutron::RouterInterface
496     properties:
497       router_id: { get_resource: router }
498       subnet_id: { get_resource: oam_onap_subnet }
499
500
501   # DNS Server instantiation
502   dns_private_port:
503     type: OS::Neutron::Port
504     properties:
505       network: { get_resource: oam_onap }
506       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: dns_ip_addr }}]
507       security_groups:
508       - { get_resource: onap_sg }
509
510   dns_floating_ip:
511     type: OS::Neutron::FloatingIP
512     properties:
513       floating_network_id: { get_param: public_net_id }
514       port_id: { get_resource: dns_private_port }
515
516   dns_vm:
517     type: OS::Nova::Server
518     properties:
519       image: { get_param: ubuntu_1404_image }
520       flavor: { get_param: flavor_small }
521       name:
522         str_replace:
523           template: base-dns-server
524           params:
525             base: { get_param: vm_base_name }
526       key_name: { get_resource: vm_key }
527       networks:
528         - port: { get_resource: dns_private_port }
529       user_data_format: RAW
530       user_data:
531         str_replace:
532           params:
533             __nexus_repo__: { get_param: nexus_repo }
534             __artifacts_version__: { get_param: artifacts_version }
535             __oam_network_cidr__: { get_attr: [oam_onap_subnet, cidr] }
536             __dns_ip_addr__: { get_param: dns_ip_addr }
537             __aai1_ip_addr__: { get_param: aai1_ip_addr }
538             __aai2_ip_addr__: { get_param: aai2_ip_addr }
539             __appc_ip_addr__: { get_param: appc_ip_addr }
540             __dcae_ip_addr__: { get_param: dcae_ip_addr }
541             __so_ip_addr__: { get_param: so_ip_addr }
542             __mr_ip_addr__: { get_param: mr_ip_addr }
543             __policy_ip_addr__: { get_param: policy_ip_addr }
544             __portal_ip_addr__: { get_param: portal_ip_addr }
545             __robot_ip_addr__: { get_param: robot_ip_addr }
546             __sdc_ip_addr__: { get_param: sdc_ip_addr }
547             __sdnc_ip_addr__: { get_param: sdnc_ip_addr }
548             __vid_ip_addr__: { get_param: vid_ip_addr }
549             __clamp_ip_addr__: { get_param: clamp_ip_addr }
550             __openo_ip_addr__: { get_param: openo_ip_addr }
551             __music_ip_addr__: { get_param: music_ip_addr }
552             __oof_ip_addr__: { get_param: oof_ip_addr }
553             __aaf_ip_addr__: { get_param: aaf_ip_addr }
554             __cloud_env__: { get_param: cloud_env }
555             __external_dns__: { get_param: external_dns }
556             __dns_forwarder__: { get_param: dns_forwarder }
557           template: |
558             #!/bin/bash
559
560             # Create configuration files
561             mkdir -p /opt/config
562             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
563             echo "__cloud_env__" > /opt/config/cloud_env.txt
564             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
565             echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt
566             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
567             echo "__aai1_ip_addr__" > /opt/config/aai1_ip_addr.txt
568             echo "__aai2_ip_addr__" > /opt/config/aai2_ip_addr.txt
569             echo "__appc_ip_addr__" > /opt/config/appc_ip_addr.txt
570             echo "__dcae_ip_addr__" > /opt/config/dcae_ip_addr.txt
571             echo "__so_ip_addr__" > /opt/config/so_ip_addr.txt
572             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
573             echo "__policy_ip_addr__" > /opt/config/policy_ip_addr.txt
574             echo "__portal_ip_addr__" > /opt/config/portal_ip_addr.txt
575             echo "__robot_ip_addr__" > /opt/config/robot_ip_addr.txt
576             echo "__sdc_ip_addr__" > /opt/config/sdc_ip_addr.txt
577             echo "__sdnc_ip_addr__" > /opt/config/sdnc_ip_addr.txt
578             echo "__vid_ip_addr__" > /opt/config/vid_ip_addr.txt
579             echo "__clamp_ip_addr__" > /opt/config/clamp_ip_addr.txt
580             echo "__openo_ip_addr__" > /opt/config/openo_ip_addr.txt
581             echo "__music_ip_addr__" > /opt/config/music_ip_addr.txt
582             echo "__oof_ip_addr__" > /opt/config/oof_ip_addr.txt
583             echo "__aaf_ip_addr__" > /opt/config/aaf_ip_addr.txt
584             echo "__external_dns__" > /opt/config/external_dns.txt
585             echo "__dns_forwarder__" > /opt/config/dns_forwarder.txt
586
587             # Download and run install script
588             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/dns_install.sh -o /opt/dns_install.sh
589             cd /opt
590             chmod +x dns_install.sh
591             ./dns_install.sh
592
593
594   # A&AI instantiation (2 VMs)
595   aai1_private_port:
596     type: OS::Neutron::Port
597     properties:
598       network: { get_resource: oam_onap }
599       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aai1_ip_addr }}]
600       security_groups:
601       - { get_resource: onap_sg }
602
603   aai1_floating_ip:
604     type: OS::Neutron::FloatingIP
605     properties:
606       floating_network_id: { get_param: public_net_id }
607       port_id: { get_resource: aai1_private_port }
608
609   aai1_vm:
610     type: OS::Nova::Server
611     depends_on: aai2_vm
612     properties:
613       image: { get_param: ubuntu_1404_image }
614       flavor: { get_param: flavor_large }
615       name:
616         str_replace:
617           template: base-aai-inst1
618           params:
619             base: { get_param: vm_base_name }
620       key_name: { get_resource: vm_key }
621       networks:
622         - port: { get_resource: aai1_private_port }
623       user_data_format: RAW
624       user_data:
625         str_replace:
626           params:
627             __nexus_repo__: { get_param: nexus_repo }
628             __nexus_docker_repo__: { get_param: nexus_docker_repo }
629             __nexus_username__: { get_param: nexus_username }
630             __nexus_password__: { get_param: nexus_password }
631             __dmaap_topic__: { get_param: dmaap_topic }
632             __artifacts_version__: { get_param: artifacts_version }
633             __dns_ip_addr__: { get_param: dns_ip_addr }
634             __docker_version__: { get_param: aai_docker }
635             __aai_sparky_docker__ : { get_param: aai_sparky_docker }
636             __gerrit_branch__: { get_param: aai_branch }
637             __cloud_env__: { get_param: cloud_env }
638             __external_dns__: { get_param: external_dns }
639             __aai_repo__: { get_param: aai_repo }
640           template: |
641             #!/bin/bash
642
643             # Create configuration files
644             mkdir -p /opt/config
645             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
646             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
647             echo "__nexus_username__" > /opt/config/nexus_username.txt
648             echo "__nexus_password__" > /opt/config/nexus_password.txt
649             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
650             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
651             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
652             echo "__docker_version__" > /opt/config/docker_version.txt
653             echo "__aai_sparky_docker__" > /opt/config/sparky_version.txt
654             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
655             echo "aai_instance_1" > /opt/config/aai_instance.txt
656             echo "__cloud_env__" > /opt/config/cloud_env.txt
657             echo "__external_dns__" > /opt/config/external_dns.txt
658             echo "__aai_repo__" > /opt/config/remote_repo.txt
659
660             # Download and run install script
661             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/aai_install.sh -o /opt/aai_install.sh
662             cd /opt
663             chmod +x aai_install.sh
664             ./aai_install.sh
665
666
667   aai2_private_port:
668     type: OS::Neutron::Port
669     properties:
670       network: { get_resource: oam_onap }
671       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aai2_ip_addr }}]
672       security_groups:
673       - { get_resource: onap_sg }
674
675   aai2_floating_ip:
676     type: OS::Neutron::FloatingIP
677     properties:
678       floating_network_id: { get_param: public_net_id }
679       port_id: { get_resource: aai2_private_port }
680
681   aai2_vm:
682     type: OS::Nova::Server
683     properties:
684       image: { get_param: ubuntu_1404_image }
685       flavor: { get_param: flavor_large }
686       name:
687         str_replace:
688           template: base-aai-inst2
689           params:
690             base: { get_param: vm_base_name }
691       key_name: { get_resource: vm_key }
692       networks:
693         - port: { get_resource: aai2_private_port }
694       user_data_format: RAW
695       user_data:
696         str_replace:
697           params:
698             __nexus_repo__: { get_param: nexus_repo }
699             __nexus_docker_repo__: { get_param: nexus_docker_repo }
700             __nexus_username__: { get_param: nexus_username }
701             __nexus_password__: { get_param: nexus_password }
702             __dmaap_topic__: { get_param: dmaap_topic }
703             __artifacts_version__: { get_param: artifacts_version }
704             __dns_ip_addr__: { get_param: dns_ip_addr }
705             __docker_version__: { get_param: aai_docker }
706             __gerrit_branch__: { get_param: aai_branch }
707             __cloud_env__: { get_param: cloud_env }
708             __external_dns__: { get_param: external_dns }
709             __aai_repo__: { get_param: aai_repo }
710           template: |
711             #!/bin/bash
712
713             # Create configuration files
714             mkdir -p /opt/config
715             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
716             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
717             echo "__nexus_username__" > /opt/config/nexus_username.txt
718             echo "__nexus_password__" > /opt/config/nexus_password.txt
719             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
720             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
721             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
722             echo "__docker_version__" > /opt/config/docker_version.txt
723             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
724             echo "aai_instance_2" > /opt/config/aai_instance.txt
725             echo "__cloud_env__" > /opt/config/cloud_env.txt
726             echo "__external_dns__" > /opt/config/external_dns.txt
727             echo "__aai_repo__" > /opt/config/remote_repo.txt
728
729             # Download and run install script
730             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/aai_install.sh -o /opt/aai_install.sh
731             cd /opt
732             chmod +x aai_install.sh
733             ./aai_install.sh
734
735
736   # SO instantiation
737   so_private_port:
738     type: OS::Neutron::Port
739     properties:
740       network: { get_resource: oam_onap }
741       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: so_ip_addr }}]
742       security_groups:
743       - { get_resource: onap_sg }
744
745   so_floating_ip:
746     type: OS::Neutron::FloatingIP
747     properties:
748       floating_network_id: { get_param: public_net_id }
749       port_id: { get_resource: so_private_port }
750
751   so_vm:
752     type: OS::Nova::Server
753     properties:
754       image: { get_param: ubuntu_1604_image }
755       flavor: { get_param: flavor_medium }
756       name:
757         str_replace:
758           template: base-so
759           params:
760             base: { get_param: vm_base_name }
761       key_name: { get_resource: vm_key }
762       networks:
763         - port: { get_resource: so_private_port }
764       user_data_format: RAW
765       user_data:
766         str_replace:
767           params:
768             __nexus_repo__: { get_param: nexus_repo }
769             __nexus_docker_repo__: { get_param: nexus_docker_repo }
770             __nexus_username__: { get_param: nexus_username }
771             __nexus_password__: { get_param: nexus_password }
772             __openstack_username__: { get_param: openstack_username }
773             __openstack_tenant_id__: { get_param: openstack_tenant_id }
774             __openstack_api_key__: { get_param: openstack_api_key }
775             __openstack_region__: { get_param: openstack_region }
776             __keystone_url__: { get_param: keystone_url }
777             __dmaap_topic__: { get_param: dmaap_topic }
778             __artifacts_version__: { get_param: artifacts_version }
779             __dns_ip_addr__: { get_param: dns_ip_addr }
780             __openo_ip__: { get_param: openo_ip_addr }
781             __docker_version__: { get_param: so_docker }
782             __gerrit_branch__: { get_param: so_branch }
783             __cloud_env__: { get_param: cloud_env }
784             __external_dns__: { get_param: external_dns }
785             __so_repo__: { get_param: so_repo }
786           template: |
787             #!/bin/bash
788
789             # Create configuration files
790             mkdir -p /opt/config
791             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
792             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
793             echo "__nexus_username__" > /opt/config/nexus_username.txt
794             echo "__nexus_password__" > /opt/config/nexus_password.txt
795             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
796             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
797             echo "__openo_ip__" > /opt/config/openo_ip.txt
798             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
799             echo "__openstack_username__" > /opt/config/openstack_username.txt
800             echo "__openstack_tenant_id__" > /opt/config/tenant_id.txt
801             echo "__openstack_api_key__" > /opt/config/openstack_api_key.txt
802             echo "__openstack_region__" > /opt/config/openstack_region.txt
803             echo "__keystone_url__" > /opt/config/keystone.txt
804             echo "__docker_version__" > /opt/config/docker_version.txt
805             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
806             echo "__cloud_env__" > /opt/config/cloud_env.txt
807             echo "__external_dns__" > /opt/config/external_dns.txt
808             echo "__so_repo__" > /opt/config/remote_repo.txt
809
810             # Download and run install script
811             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/so_install.sh -o /opt/so_install.sh
812             cd /opt
813             chmod +x so_install.sh
814             ./so_install.sh
815
816
817   # Message Router instantiation
818   mrouter_private_port:
819     type: OS::Neutron::Port
820     properties:
821       network: { get_resource: oam_onap }
822       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: mr_ip_addr }}]
823       security_groups:
824       - { get_resource: onap_sg }
825
826   mrouter_floating_ip:
827     type: OS::Neutron::FloatingIP
828     properties:
829       floating_network_id: { get_param: public_net_id }
830       port_id: { get_resource: mrouter_private_port }
831
832   mrouter_vm:
833     type: OS::Nova::Server
834     properties:
835       image: { get_param: ubuntu_1404_image }
836       flavor: { get_param: flavor_medium }
837       name:
838         str_replace:
839           template: base-message-router
840           params:
841             base: { get_param: vm_base_name }
842       key_name: { get_resource: vm_key }
843       networks:
844         - port: { get_resource: mrouter_private_port }
845       user_data_format: RAW
846       user_data:
847         str_replace:
848           params:
849             __nexus_repo__: { get_param: nexus_repo }
850             __nexus_docker_repo__: { get_param: nexus_docker_repo }
851             __nexus_username__: { get_param: nexus_username }
852             __nexus_password__: { get_param: nexus_password }
853             __artifacts_version__: { get_param: artifacts_version }
854             __dns_ip_addr__: { get_param: dns_ip_addr }
855             __gerrit_branch__: { get_param: mr_branch }
856             __cloud_env__: { get_param: cloud_env }
857             __external_dns__: { get_param: external_dns }
858             __mr_repo__: { get_param: mr_repo }
859           template: |
860             #!/bin/bash
861
862             # Create configuration files
863             mkdir -p /opt/config
864             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
865             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
866             echo "__nexus_username__" > /opt/config/nexus_username.txt
867             echo "__nexus_password__" > /opt/config/nexus_password.txt
868             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
869             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
870             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
871             echo "__cloud_env__" > /opt/config/cloud_env.txt
872             echo "__external_dns__" > /opt/config/external_dns.txt
873             echo "__mr_repo__" > /opt/config/remote_repo.txt
874
875             # Download and run install script
876             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/mr_install.sh -o /opt/mr_install.sh
877             cd /opt
878             chmod +x mr_install.sh
879             ./mr_install.sh
880
881
882   # Robot Framework instantiation
883   robot_private_port:
884     type: OS::Neutron::Port
885     properties:
886       network: { get_resource: oam_onap }
887       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: robot_ip_addr }}]
888       security_groups:
889       - { get_resource: onap_sg }
890
891   robot_floating_ip:
892     type: OS::Neutron::FloatingIP
893     properties:
894       floating_network_id: { get_param: public_net_id }
895       port_id: { get_resource: robot_private_port }
896
897   robot_vm:
898     type: OS::Nova::Server
899     properties:
900       image: { get_param: ubuntu_1604_image }
901       flavor: { get_param: flavor_small }
902       name:
903         str_replace:
904           template: base-robot
905           params:
906             base: { get_param: vm_base_name }
907       key_name: { get_resource: vm_key }
908       networks:
909         - port: { get_resource: robot_private_port }
910       user_data_format: RAW
911       user_data:
912         str_replace:
913           params:
914             __nexus_repo__: { get_param: nexus_repo }
915             __nexus_docker_repo__: { get_param: nexus_docker_repo }
916             __nexus_username__: { get_param: nexus_username }
917             __nexus_password__: { get_param: nexus_password }
918             __network_name__: { get_attr: [oam_onap, name] }
919             __openstack_username__: { get_param: openstack_username }
920             __openstack_api_key__: { get_param : openstack_api_key }
921             __openstack_tenant_id__: { get_param: openstack_tenant_id }
922             __artifacts_version__: { get_param: artifacts_version }
923             __openstack_region__: { get_param: openstack_region }
924             __dns_ip_addr__: { get_param: dns_ip_addr }
925             __gerrit_branch__: { get_param: robot_branch }
926             __cloud_env__: { get_param: cloud_env }
927             __keystone_url__: { get_param: keystone_url }
928             __aai1_ip_addr__: { get_param: aai1_ip_addr }
929             __aai2_ip_addr__: { get_param: aai2_ip_addr }
930             __appc_ip_addr__: { get_param: appc_ip_addr }
931             __dcae_ip_addr__: { get_param: dcae_ip_addr }
932             __so_ip_addr__: { get_param: so_ip_addr }
933             __mr_ip_addr__: { get_param: mr_ip_addr }
934             __policy_ip_addr__: { get_param: policy_ip_addr }
935             __portal_ip_addr__: { get_param: portal_ip_addr }
936             __sdc_ip_addr__: { get_param: sdc_ip_addr }
937             __sdnc_ip_addr__: { get_param: sdnc_ip_addr }
938             __vid_ip_addr__: { get_param: vid_ip_addr }
939             __clamp_ip_addr__: { get_param: clamp_ip_addr }
940             __openo_ip_addr__: { get_param: openo_ip_addr }
941             __clamp_ip_addr__: { get_param: clamp_ip_addr }
942             __openo_ip_addr__: { get_param: openo_ip_addr }
943             __music_ip_addr__: { get_param: music_ip_addr }
944             __external_dns__: { get_param: external_dns }
945             __vm_image_name__: { get_param: ubuntu_1404_image }
946             __vm_flavor__: { get_param: flavor_medium }
947             __public_net_id__: { get_param: public_net_id }
948             __script_version__: { get_param: artifacts_version }
949             __robot_repo__: { get_param: robot_repo }
950             __docker_version__: { get_param: robot_docker }
951           template: |
952             #!/bin/bash
953
954             # Create configuration files
955             mkdir -p /opt/config
956             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
957             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
958             echo "__nexus_username__" > /opt/config/nexus_username.txt
959             echo "__nexus_password__" > /opt/config/nexus_password.txt
960             echo "__network_name__" > /opt/config/network.txt
961             echo "__openstack_username__" > /opt/config/openstack_username.txt
962             echo "__openstack_api_key__" > /opt/config/openstack_password.txt
963             echo "__openstack_tenant_id__" > /opt/config/openstack_tenant_id.txt
964             echo "__openstack_region__" > /opt/config/region.txt
965             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
966             echo "__docker_version__" > /opt/config/docker_version.txt
967             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
968             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
969             echo "__keystone_url__" > /opt/config/keystone.txt
970             echo "__aai1_ip_addr__" > /opt/config/aai1_ip_addr.txt
971             echo "__aai2_ip_addr__" > /opt/config/aai2_ip_addr.txt
972             echo "__appc_ip_addr__" > /opt/config/appc_ip_addr.txt
973             echo "__dcae_ip_addr__" > /opt/config/dcae_ip_addr.txt
974             echo "__so_ip_addr__" > /opt/config/so_ip_addr.txt
975             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
976             echo "__policy_ip_addr__" > /opt/config/policy_ip_addr.txt
977             echo "__portal_ip_addr__" > /opt/config/portal_ip_addr.txt
978             echo "__sdc_ip_addr__" > /opt/config/sdc_ip_addr.txt
979             echo "__sdc_ip_addr__" > /opt/config/sdc_be_ip_addr.txt
980             echo "__sdc_ip_addr__" > /opt/config/sdc_fe_ip_addr.txt
981             echo "__sdnc_ip_addr__" > /opt/config/sdnc_ip_addr.txt
982             echo "__vid_ip_addr__" > /opt/config/vid_ip_addr.txt
983             echo "__clamp_ip_addr__" > /opt/config/clamp_ip_addr.txt
984             echo "__openo_ip_addr__" > /opt/config/openo_ip_addr.txt
985             echo "__music_ip_addr__" > /opt/config/music_ip_addr.txt
986             echo "__oof_ip_addr__" > /opt/config/oof_ip_addr.txt
987             echo "__aaf_ip_addr__" > /opt/config/aaf_ip_addr.txt
988             echo "__cloud_env__" > /opt/config/cloud_env.txt
989             echo "__external_dns__" > /opt/config/external_dns.txt
990             echo "__vm_image_name__" > /opt/config/vm_image_name.txt
991             echo "__ubuntu_1404_image__" > /opt/config/ubuntu_1404_image.txt
992             echo "__ubuntu_1604_image__" > /opt/config/ubuntu_1604_image.txt
993             echo "__script_version__" > /opt/config/script_version.txt
994             echo "__public_net_id__" > /opt/config/public_net_id.txt
995             echo "__robot_repo__" > /opt/config/remote_repo.txt
996
997             # Download and run install script
998             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/robot_install.sh -o /opt/robot_install.sh
999             cd /opt
1000             chmod +x robot_install.sh
1001             ./robot_install.sh
1002
1003
1004   # VID instantiation
1005   vid_private_port:
1006     type: OS::Neutron::Port
1007     properties:
1008       network: { get_resource: oam_onap }
1009       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: vid_ip_addr }}]
1010       security_groups:
1011       - { get_resource: onap_sg }
1012
1013   vid_floating_ip:
1014     type: OS::Neutron::FloatingIP
1015     properties:
1016       floating_network_id: { get_param: public_net_id }
1017       port_id: { get_resource: vid_private_port }
1018
1019   vid_vm:
1020     type: OS::Nova::Server
1021     properties:
1022       image: { get_param: ubuntu_1404_image }
1023       flavor: { get_param: flavor_medium }
1024       name:
1025         str_replace:
1026           template: base-vid
1027           params:
1028             base: { get_param: vm_base_name }
1029       key_name: { get_resource: vm_key }
1030       networks:
1031         - port: { get_resource: vid_private_port }
1032       user_data_format: RAW
1033       user_data:
1034         str_replace:
1035           params:
1036             __nexus_repo__: { get_param: nexus_repo }
1037             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1038             __nexus_username__: { get_param: nexus_username }
1039             __nexus_password__: { get_param: nexus_password }
1040             __artifacts_version__: { get_param: artifacts_version }
1041             __dns_ip_addr__: { get_param: dns_ip_addr }
1042             __docker_version__: { get_param: vid_docker }
1043             __gerrit_branch__: { get_param: vid_branch }
1044             __cloud_env__: { get_param: cloud_env }
1045             __external_dns__: { get_param: external_dns }
1046             __vid_repo__: { get_param: vid_repo }
1047           template: |
1048             #!/bin/bash
1049
1050             # Create configuration files
1051             mkdir -p /opt/config
1052             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1053             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1054             echo "__nexus_username__" > /opt/config/nexus_username.txt
1055             echo "__nexus_password__" > /opt/config/nexus_password.txt
1056             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1057             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1058             echo "__docker_version__" > /opt/config/docker_version.txt
1059             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1060             echo "__cloud_env__" > /opt/config/cloud_env.txt
1061             echo "__external_dns__" > /opt/config/external_dns.txt
1062             echo "__vid_repo__" > /opt/config/remote_repo.txt
1063
1064             # Download and run install script
1065             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/vid_install.sh -o /opt/vid_install.sh
1066             cd /opt
1067             chmod +x vid_install.sh
1068             ./vid_install.sh
1069
1070
1071   # SDN-C instantiation
1072   sdnc_private_port:
1073     type: OS::Neutron::Port
1074     properties:
1075       network: { get_resource: oam_onap }
1076       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdnc_ip_addr }}]
1077       security_groups:
1078       - { get_resource: onap_sg }
1079
1080   sdnc_floating_ip:
1081     type: OS::Neutron::FloatingIP
1082     properties:
1083       floating_network_id: { get_param: public_net_id }
1084       port_id: { get_resource: sdnc_private_port }
1085
1086   sdnc_vm:
1087     type: OS::Nova::Server
1088     properties:
1089       image: { get_param: ubuntu_1404_image }
1090       flavor: { get_param: flavor_medium }
1091       name:
1092         str_replace:
1093           template: base-sdnc
1094           params:
1095             base: { get_param: vm_base_name }
1096       key_name: { get_resource: vm_key }
1097       networks:
1098         - port: { get_resource: sdnc_private_port }
1099       user_data_format: RAW
1100       user_data:
1101         str_replace:
1102           params:
1103             __nexus_repo__: { get_param: nexus_repo }
1104             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1105             __nexus_username__: { get_param: nexus_username }
1106             __nexus_password__: { get_param: nexus_password }
1107             __artifacts_version__: { get_param: artifacts_version }
1108             __dns_ip_addr__: { get_param: dns_ip_addr }
1109             __docker_version__: { get_param: sdnc_docker }
1110             __gerrit_branch__: { get_param: sdnc_branch }
1111             __dgbuilder_docker__: { get_param: dgbuilder_docker }
1112             __cloud_env__: { get_param: cloud_env }
1113             __external_dns__: { get_param: external_dns }
1114             __sdnc_repo__: { get_param: sdnc_repo }
1115           template: |
1116             #!/bin/bash
1117
1118             # Create configuration files
1119             mkdir -p /opt/config
1120             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1121             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1122             echo "__nexus_username__" > /opt/config/nexus_username.txt
1123             echo "__nexus_password__" > /opt/config/nexus_password.txt
1124             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1125             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1126             echo "__docker_version__" > /opt/config/docker_version.txt
1127             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1128             echo "__dgbuilder_docker__" > /opt/config/dgbuilder_version.txt
1129             echo "__cloud_env__" > /opt/config/cloud_env.txt
1130             echo "__external_dns__" > /opt/config/external_dns.txt
1131             echo "__sdnc_repo__" > /opt/config/remote_repo.txt
1132
1133             # Download and run install script
1134             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdnc_install.sh -o /opt/sdnc_install.sh
1135             cd /opt
1136             chmod +x sdnc_install.sh
1137             ./sdnc_install.sh
1138
1139
1140   # SDC instantiation
1141   sdc_private_port:
1142     type: OS::Neutron::Port
1143     properties:
1144       network: { get_resource: oam_onap }
1145       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdc_ip_addr }}]
1146       security_groups:
1147       - { get_resource: onap_sg }
1148
1149   sdc_floating_ip:
1150     type: OS::Neutron::FloatingIP
1151     properties:
1152       floating_network_id: { get_param: public_net_id }
1153       port_id: { get_resource: sdc_private_port }
1154
1155   sdc_volume_data:
1156     type: OS::Cinder::Volume
1157     properties:
1158       name: vol1-sdc-data
1159       size: 100
1160
1161   sdc_vm:
1162     type: OS::Nova::Server
1163     properties:
1164       image: { get_param: ubuntu_1604_image }
1165       flavor: { get_param: flavor_large }
1166       name:
1167         str_replace:
1168           template: base-sdc
1169           params:
1170             base: { get_param: vm_base_name }
1171       key_name: { get_resource: vm_key }
1172       networks:
1173         - port: { get_resource: sdc_private_port }
1174       block_device_mapping:
1175         - device_name: /dev/vdb
1176           volume_id: {get_resource: sdc_volume_data}
1177       user_data_format: RAW
1178       user_data:
1179         str_replace:
1180           params:
1181             __nexus_repo__: { get_param: nexus_repo }
1182             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1183             __nexus_username__: { get_param: nexus_username }
1184             __nexus_password__: { get_param: nexus_password }
1185             __env_name__: { get_param: dmaap_topic }
1186             __artifacts_version__: { get_param: artifacts_version }
1187             __dns_ip_addr__: { get_param: dns_ip_addr }
1188             __mr_ip_addr__: { get_param: mr_ip_addr }
1189             __private_ip__: { get_param: sdc_ip_addr }
1190             __docker_version__: { get_param: sdc_docker }
1191             __gerrit_branch__: { get_param: sdc_branch }
1192             __cloud_env__: { get_param: cloud_env }
1193             __external_dns__: { get_param: external_dns }
1194             __sdc_repo__: { get_param: sdc_repo }
1195           template: |
1196             #!/bin/bash
1197
1198             # Create configuration files
1199             mkdir -p /opt/config
1200             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1201             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1202             echo "__nexus_username__" > /opt/config/nexus_username.txt
1203             echo "__nexus_password__" > /opt/config/nexus_password.txt
1204             echo "__env_name__" > /opt/config/env_name.txt
1205             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
1206             echo "__private_ip__" > /opt/config/private_ip.txt
1207             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1208             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1209             echo "__docker_version__" > /opt/config/docker_version.txt
1210             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1211             echo "__cloud_env__" > /opt/config/cloud_env.txt
1212             echo "__external_dns__" > /opt/config/external_dns.txt
1213             echo "__sdc_repo__" > /opt/config/remote_repo.txt
1214
1215             # Download and run install script
1216             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
1217             cd /opt
1218             chmod +x sdc_install.sh
1219             ./sdc_install.sh
1220
1221
1222   # PORTAL instantiation
1223   portal_private_port:
1224     type: OS::Neutron::Port
1225     properties:
1226       network: { get_resource: oam_onap }
1227       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: portal_ip_addr }}]
1228       security_groups:
1229       - { get_resource: onap_sg }
1230
1231   portal_floating_ip:
1232     type: OS::Neutron::FloatingIP
1233     properties:
1234       floating_network_id: { get_param: public_net_id }
1235       port_id: { get_resource: portal_private_port }
1236
1237   portal_vm:
1238     type: OS::Nova::Server
1239     properties:
1240       image: { get_param: ubuntu_1404_image }
1241       flavor: { get_param: flavor_medium }
1242       name:
1243         str_replace:
1244           template: base-portal
1245           params:
1246             base: { get_param: vm_base_name }
1247       key_name: { get_resource: vm_key }
1248       networks:
1249         - port: { get_resource: portal_private_port }
1250       user_data_format: RAW
1251       user_data:
1252         str_replace:
1253           params:
1254             __nexus_repo__: { get_param: nexus_repo }
1255             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1256             __nexus_username__: { get_param: nexus_username }
1257             __nexus_password__: { get_param: nexus_password }
1258             __artifacts_version__: { get_param: artifacts_version }
1259             __dns_ip_addr__: { get_param: dns_ip_addr }
1260             __public_ip__: { get_attr: [portal_floating_ip, floating_ip_address] }
1261             __docker_version__: { get_param: portal_docker }
1262             __gerrit_branch__: { get_param: portal_branch }
1263             __cli_docker__: { get_param: cli_docker }
1264             __cloud_env__: { get_param: cloud_env }
1265             __external_dns__: { get_param: external_dns }
1266             __portal_repo__: { get_param: portal_repo }
1267           template: |
1268             #!/bin/bash
1269
1270             # Create configuration files
1271             mkdir -p /opt/config
1272             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1273             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1274             echo "__nexus_username__" > /opt/config/nexus_username.txt
1275             echo "__nexus_password__" > /opt/config/nexus_password.txt
1276             echo "__public_ip__" > /opt/config/public_ip.txt
1277             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1278             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1279             echo "__docker_version__" > /opt/config/docker_version.txt
1280             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1281             echo "__cli_docker__" > /opt/config/cli_docker_version.txt
1282             echo "__cloud_env__" > /opt/config/cloud_env.txt
1283             echo "__external_dns__" > /opt/config/external_dns.txt
1284             echo "__portal_repo__" > /opt/config/remote_repo.txt
1285
1286             # Download and run install script
1287             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/portal_install.sh -o /opt/portal_install.sh
1288             cd /opt
1289             chmod +x portal_install.sh
1290             ./portal_install.sh
1291
1292
1293   # Policy Engine instantiation
1294   policy_private_port:
1295     type: OS::Neutron::Port
1296     properties:
1297       network: { get_resource: oam_onap }
1298       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: policy_ip_addr }}]
1299       security_groups:
1300       - { get_resource: onap_sg }
1301
1302   policy_floating_ip:
1303     type: OS::Neutron::FloatingIP
1304     properties:
1305       floating_network_id: { get_param: public_net_id }
1306       port_id: { get_resource: policy_private_port }
1307
1308   policy_vm:
1309     type: OS::Nova::Server
1310     properties:
1311       image: { get_param: ubuntu_1404_image }
1312       flavor: { get_param: flavor_medium }
1313       name:
1314         str_replace:
1315           template: base-policy
1316           params:
1317             base: { get_param: vm_base_name }
1318       key_name: { get_resource: vm_key }
1319       networks:
1320         - port: { get_resource: policy_private_port }
1321       user_data_format: RAW
1322       user_data:
1323         str_replace:
1324           params:
1325             __nexus_repo__: { get_param: nexus_repo }
1326             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1327             __nexus_username__: { get_param: nexus_username }
1328             __nexus_password__: { get_param: nexus_password }
1329             __artifacts_version__: { get_param: artifacts_version }
1330             __dns_ip_addr__: { get_param: dns_ip_addr }
1331             __public_ip__: { get_attr: [policy_floating_ip, floating_ip_address] }
1332             __docker_version__: { get_param: policy_docker }
1333             __gerrit_branch__: { get_param: policy_branch }
1334             __cloud_env__: { get_param: cloud_env }
1335             __external_dns__: { get_param: external_dns }
1336             __policy_repo__: { get_param: policy_repo }
1337           template: |
1338             #!/bin/bash
1339
1340             # Create configuration files
1341             mkdir -p /opt/config
1342             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1343             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1344             echo "__nexus_username__" > /opt/config/nexus_username.txt
1345             echo "__nexus_password__" > /opt/config/nexus_password.txt
1346             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1347             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1348             echo "__public_ip__" > /opt/config/public_ip.txt
1349             echo "__docker_version__" > /opt/config/docker_version.txt
1350             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1351             echo "__cloud_env__" > /opt/config/cloud_env.txt
1352             echo "__external_dns__" > /opt/config/external_dns.txt
1353             echo "__policy_repo__" > /opt/config/remote_repo.txt
1354
1355             # Download and run install script
1356             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/policy_install.sh -o /opt/policy_install.sh
1357             cd /opt
1358             chmod +x policy_install.sh
1359             ./policy_install.sh
1360
1361
1362   # APP-C instantiation
1363   appc_private_port:
1364     type: OS::Neutron::Port
1365     properties:
1366       network: { get_resource: oam_onap }
1367       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: appc_ip_addr }}]
1368       security_groups:
1369       - { get_resource: onap_sg }
1370
1371   appc_floating_ip:
1372     type: OS::Neutron::FloatingIP
1373     properties:
1374       floating_network_id: { get_param: public_net_id }
1375       port_id: { get_resource: appc_private_port }
1376
1377   appc_vm:
1378     type: OS::Nova::Server
1379     properties:
1380       image: { get_param: ubuntu_1404_image }
1381       flavor: { get_param: flavor_medium }
1382       name:
1383         str_replace:
1384           template: base-appc
1385           params:
1386             base: { get_param: vm_base_name }
1387       key_name: { get_resource: vm_key }
1388       networks:
1389         - port: { get_resource: appc_private_port }
1390       user_data_format: RAW
1391       user_data:
1392         str_replace:
1393           params:
1394             __nexus_repo__: { get_param: nexus_repo }
1395             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1396             __nexus_username__: { get_param: nexus_username }
1397             __nexus_password__: { get_param: nexus_password }
1398             __dmaap_topic__: { get_param: dmaap_topic }
1399             __artifacts_version__: { get_param: artifacts_version }
1400             __dns_ip_addr__: { get_param: dns_ip_addr }
1401             __docker_version__: { get_param: appc_docker }
1402             __gerrit_branch__: { get_param: appc_branch }
1403             __dgbuilder_docker__: { get_param: dgbuilder_docker }
1404             __cloud_env__: { get_param: cloud_env }
1405             __external_dns__: { get_param: external_dns }
1406             __appc_repo__: { get_param: appc_repo }
1407           template: |
1408             #!/bin/bash
1409
1410             # Create configuration files
1411             mkdir -p /opt/config
1412             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1413             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1414             echo "__nexus_username__" > /opt/config/nexus_username.txt
1415             echo "__nexus_password__" > /opt/config/nexus_password.txt
1416             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1417             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1418             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
1419             echo "__docker_version__" > /opt/config/docker_version.txt
1420             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1421             echo "__dgbuilder_docker__" > /opt/config/dgbuilder_version.txt
1422             echo "__cloud_env__" > /opt/config/cloud_env.txt
1423             echo "__external_dns__" > /opt/config/external_dns.txt
1424             echo "__appc_repo__" > /opt/config/remote_repo.txt
1425
1426             # Download and run install script
1427             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/appc_install.sh -o /opt/appc_install.sh
1428             cd /opt
1429             chmod +x appc_install.sh
1430             ./appc_install.sh
1431
1432
1433   # CLAMP instantiation
1434   clamp_private_port:
1435     type: OS::Neutron::Port
1436     properties:
1437       network: { get_resource: oam_onap }
1438       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: clamp_ip_addr }}]
1439       security_groups:
1440       - { get_resource: onap_sg }
1441
1442   clamp_floating_ip:
1443     type: OS::Neutron::FloatingIP
1444     properties:
1445       floating_network_id: { get_param: public_net_id }
1446       port_id: { get_resource: clamp_private_port }
1447
1448   clamp_vm:
1449     type: OS::Nova::Server
1450     properties:
1451       image: { get_param: ubuntu_1604_image }
1452       flavor: { get_param: flavor_medium }
1453       name:
1454         str_replace:
1455           template: base-clamp
1456           params:
1457             base: { get_param: vm_base_name }
1458       key_name: { get_resource: vm_key }
1459       networks:
1460         - port: { get_resource: clamp_private_port }
1461       user_data_format: RAW
1462       user_data:
1463         str_replace:
1464           params:
1465             __nexus_repo__: { get_param: nexus_repo }
1466             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1467             __nexus_username__: { get_param: nexus_username }
1468             __nexus_password__: { get_param: nexus_password }
1469             __openstack_username__: { get_param: openstack_username }
1470             __openstack_tenant_id__: { get_param: openstack_tenant_id }
1471             __openstack_api_key__: { get_param: openstack_api_key }
1472             __openstack_region__: { get_param: openstack_region }
1473             __keystone_url__: { get_param: keystone_url }
1474             __dmaap_topic__: { get_param: dmaap_topic }
1475             __artifacts_version__: { get_param: artifacts_version }
1476             __dns_ip_addr__: { get_param: dns_ip_addr }
1477             __docker_version__: { get_param: clamp_docker }
1478             __gerrit_branch__: { get_param: clamp_branch }
1479             __cloud_env__: { get_param: cloud_env }
1480             __external_dns__: { get_param: external_dns }
1481             __clamp_repo__: { get_param: clamp_repo }
1482           template: |
1483             #!/bin/bash
1484
1485             # Create configuration files
1486             mkdir -p /opt/config
1487             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1488             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1489             echo "__nexus_username__" > /opt/config/nexus_username.txt
1490             echo "__nexus_password__" > /opt/config/nexus_password.txt
1491             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1492             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1493             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
1494             echo "__openstack_username__" > /opt/config/openstack_username.txt
1495             echo "__openstack_tenant_id__" > /opt/config/tenant_id.txt
1496             echo "__openstack_api_key__" > /opt/config/openstack_api_key.txt
1497             echo "__openstack_region__" > /opt/config/openstack_region.txt
1498             echo "__keystone_url__" > /opt/config/keystone.txt
1499             echo "__docker_version__" > /opt/config/docker_version.txt
1500             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1501             echo "__cloud_env__" > /opt/config/cloud_env.txt
1502             echo "__external_dns__" > /opt/config/external_dns.txt
1503             echo "__clamp_repo__" > /opt/config/remote_repo.txt
1504
1505             # Download and run install script
1506             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
1507             cd /opt
1508             chmod +x clamp_install.sh
1509             ./clamp_install.sh
1510
1511
1512   # OPEN-O VM instantiation
1513   openo_private_port:
1514     type: OS::Neutron::Port
1515     properties:
1516       network: { get_resource: oam_onap }
1517       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: openo_ip_addr }}]
1518       security_groups:
1519       - { get_resource: onap_sg }
1520
1521   openo_floating_ip:
1522     type: OS::Neutron::FloatingIP
1523     properties:
1524       floating_network_id: { get_param: public_net_id }
1525       port_id: { get_resource: openo_private_port }
1526
1527   openo_vm:
1528     type: OS::Nova::Server
1529     properties:
1530       image: { get_param: ubuntu_1604_image }
1531       flavor: { get_param: flavor_large }
1532       name:
1533         str_replace:
1534           template: base-multi-service
1535           params:
1536             base: { get_param: vm_base_name }
1537       key_name: { get_resource: vm_key }
1538       networks:
1539         - port: { get_resource: openo_private_port }
1540       user_data_format: RAW
1541       user_data:
1542         str_replace:
1543           params:
1544             __nexus_repo__: { get_param: nexus_repo }
1545             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1546             __nexus_username__: { get_param: nexus_username }
1547             __nexus_password__: { get_param: nexus_password }
1548             __artifacts_version__: { get_param: artifacts_version }
1549             __dns_ip_addr__: { get_param: dns_ip_addr }
1550             __oam_network_cidr__: { get_param: oam_network_cidr }
1551             __aai1_ip_addr__: { get_param: aai1_ip_addr }
1552             __aai2_ip_addr__: { get_param: aai2_ip_addr }
1553             __appc_ip_addr__: { get_param: appc_ip_addr }
1554             __dcae_ip_addr__: { get_param: dcae_ip_addr }
1555             __so_ip_addr__: { get_param: so_ip_addr }
1556             __mr_ip_addr__: { get_param: mr_ip_addr }
1557             __policy_ip_addr__: { get_param: policy_ip_addr }
1558             __portal_ip_addr__: { get_param: portal_ip_addr }
1559             __robot_ip_addr__: { get_param: robot_ip_addr }
1560             __sdc_ip_addr__: { get_param: sdc_ip_addr }
1561             __sdnc_ip_addr__: { get_param: sdnc_ip_addr }
1562             __vid_ip_addr__: { get_param: vid_ip_addr }
1563             __clamp_ip_addr__: { get_param: clamp_ip_addr }
1564             __openo_ip_addr__: { get_param: openo_ip_addr }
1565             __cloud_env__: { get_param: cloud_env }
1566             __external_dns__: { get_param: external_dns }
1567             __vnfsdk_branch__: { get_param: vnfsdk_branch }
1568             __msb_docker__: { get_param: msb_docker }
1569             __mvim_docker__: { get_param: mvim_docker }
1570             __uui_docker__: { get_param: uui_docker }
1571             __esr_docker__: { get_param: esr_docker }
1572             __vnfsdk_repo__: { get_param: vnfsdk_repo }
1573             __vfc_nokia_docker__: { get_param: vfc_nokia_docker }
1574             __vfc_nokiav2_docker__: { get_param: vfc_nokiav2_docker }
1575             __cbam_ip__: { get_param: cbam_ip }
1576             __cbam_username__: { get_param: cbam_username }
1577             __cbam_password__: { get_param: cbam_password }
1578             __vfc_ztevnfmdriver_docker__: { get_param: vfc_ztevnfmdriver_docker }
1579             __vfc_ztesdncdriver_docker__: { get_param: vfc_ztesdncdriver_docker }
1580             __vfc_vnfres_docker__: { get_param: vfc_vnfres_docker }
1581             __vfc_vnfmgr_docker__: { get_param: vfc_vnfmgr_docker }
1582             __vfc_vnflcm_docker__: { get_param: vfc_vnflcm_docker }
1583             __vfc_resmanagement_docker__: { get_param: vfc_resmanagement_docker }
1584             __vfc_nslcm_docker__: { get_param: vfc_nslcm_docker }
1585             __vfc_huawei_docker__: { get_param: vfc_huawei_docker }
1586             __vfc_jujudriver_docker__: { get_param: vfc_jujudriver_docker }
1587             __vfc_gvnfmdriver_docker__: { get_param: vfc_gvnfmdriver_docker }
1588             __vfc_emsdriver_docker__: { get_param: vfc_emsdriver_docker }
1589             __vfc_catalog_docker__: { get_param: vfc_catalog_docker }
1590             __vfc_wfengine_mgrservice_docker__: { get_param: vfc_wfengine_mgrservice_docker }
1591             __vfc_wfengine_activiti_docker__: { get_param: vfc_wfengine_activiti_docker }
1592           template: |
1593             #!/bin/bash
1594
1595             # Create configuration files
1596             mkdir -p /opt/config
1597             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1598             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1599             echo "__nexus_username__" > /opt/config/nexus_username.txt
1600             echo "__nexus_password__" > /opt/config/nexus_password.txt
1601             echo "__cloud_env__" > /opt/config/cloud_env.txt
1602             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1603             echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt
1604             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1605             echo "__external_dns__" > /opt/config/external_dns.txt
1606             echo "__vnfsdk_branch__" > /opt/config/vnfsdk_branch.txt
1607             echo "__msb_docker__" > /opt/config/msb_docker.txt
1608             echo "__mvim_docker__" > /opt/config/mvim_docker.txt
1609             echo "__uui_docker__" > /opt/config/uui_docker.txt
1610             echo "__esr_docker__" > /opt/config/esr_docker.txt
1611             echo "__vnfsdk_repo__" > /opt/config/vnfsdk_repo.txt
1612             echo "__cbam_ip__" > /opt/config/cbam_ip.txt
1613             echo "__cbam_username__" > /opt/config/cbam_username.txt
1614             echo "__cbam_password__" > /opt/config/cbam_password.txt
1615
1616             echo "export NOKIA_DOCKER_VER=__vfc_nokia_docker__" >> /opt/config/vfc_docker.txt
1617             echo "export NOKIAV2_DOCKER_VER=__vfc_nokiav2_docker__" >> /opt/config/vfc_docker.txt
1618             echo "export ZTEVNFMDRIVER_DOCKER_VER=__vfc_ztevnfmdriver_docker__" >> /opt/config/vfc_docker.txt
1619             echo "export ZTESDNCDRIVER_DOCKER_VER=__vfc_ztesdncdriver_docker__" >> /opt/config/vfc_docker.txt
1620             echo "export VNFRES_DOCKER_VER=__vfc_vnfres_docker__" >> /opt/config/vfc_docker.txt
1621             echo "export VNFMGR_DOCKER_VER=__vfc_vnfmgr_docker__" >> /opt/config/vfc_docker.txt
1622             echo "export VNFLCM_DOCKER_VER=__vfc_vnflcm_docker__" >> /opt/config/vfc_docker.txt
1623             echo "export RESMANAGEMENT_DOCKER_VER=__vfc_resmanagement_docker__" >> /opt/config/vfc_docker.txt
1624             echo "export NSLCM_DOCKER_VER=__vfc_nslcm_docker__" >> /opt/config/vfc_docker.txt
1625             echo "export HUAWEI_DOCKER_VER=__vfc_huawei_docker__" >> /opt/config/vfc_docker.txt
1626             echo "export JUJUDRIVER_DOCKER_VER=__vfc_jujudriver_docker__" >> /opt/config/vfc_docker.txt
1627             echo "export GVNFMDRIVER_DOCKER_VER=__vfc_gvnfmdriver_docker__" >> /opt/config/vfc_docker.txt
1628             echo "export EMSDRIVER_DOCKER_VER=__vfc_emsdriver_docker__" >> /opt/config/vfc_docker.txt
1629             echo "export CATALOG_DOCKER_VER=__vfc_catalog_docker__" >> /opt/config/vfc_docker.txt
1630             echo "export MGRSERVICE_DOCKER_VER=__vfc_wfengine_mgrservice_docker__" >> /opt/config/vfc_docker.txt
1631             echo "export ACTIVITI_DOCKER_VER=__vfc_wfengine_activiti_docker__" >> /opt/config/vfc_docker.txt
1632
1633             # Create env file with the IP address of all ONAP components
1634             echo "export AAI_IP1=__aai1_ip_addr__" >> /opt/config/onap_ips.txt
1635             echo "export AAI_IP2=__aai2_ip_addr__" >> /opt/config/onap_ips.txt
1636             echo "export APPC_IP=__appc_ip_addr__" >> /opt/config/onap_ips.txt
1637             echo "export DCAE_IP=__dcae_ip_addr__" >> /opt/config/onap_ips.txt
1638             echo "export SO_IP=__so_ip_addr__" >> /opt/config/onap_ips.txt
1639             echo "export MR_IP=__mr_ip_addr__" >> /opt/config/onap_ips.txt
1640             echo "export POLICY_IP=__policy_ip_addr__" >> /opt/config/onap_ips.txt
1641             echo "export PORTAL_IP=__portal_ip_addr__" >> /opt/config/onap_ips.txt
1642             echo "export ROBOT_IP=__robot_ip_addr__" >> /opt/config/onap_ips.txt
1643             echo "export SDC_IP=__sdc_ip_addr__" >> /opt/config/onap_ips.txt
1644             echo "export SDNC_IP=__sdnc_ip_addr__" >> /opt/config/onap_ips.txt
1645             echo "export VID_IP=__vid_ip_addr__" >> /opt/config/onap_ips.txt
1646             echo "export CLAMP_IP=__clamp_ip_addr__" >> /opt/config/onap_ips.txt
1647             echo "export OPENO_IP=__openo_ip_addr__" >> /opt/config/onap_ips.txt
1648
1649             # Download and run install script
1650             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/openo_install.sh -o /opt/openo_install.sh
1651             cd /opt
1652             chmod +x openo_install.sh
1653             ./openo_install.sh
1654
1655
1656   # DCAE GEN 2 Controller instantiation
1657   dcae_c_private_port:
1658     type: OS::Neutron::Port
1659     properties:
1660       network: { get_resource: oam_onap }
1661       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: dcae_ip_addr }}]
1662       security_groups:
1663       - { get_resource: onap_sg }
1664
1665   dcae_c_floating_ip:
1666     type: OS::Neutron::FloatingIP
1667     properties:
1668       floating_network_id: { get_param: public_net_id }
1669       port_id: { get_resource: dcae_c_private_port }
1670
1671   dcae_c_vm:
1672     type: OS::Nova::Server
1673     properties:
1674       image: { get_param: ubuntu_1604_image }
1675       flavor: { get_param: flavor_small }
1676       name:
1677         str_replace:
1678           template: base-dcae-bootstrap
1679           params:
1680             base: { get_param: vm_base_name }
1681       key_name: { get_resource: vm_key }
1682       networks:
1683         - port: { get_resource: dcae_c_private_port }
1684       #security_groups:
1685       #  - { get_resource: onap_sg }
1686       user_data_format: RAW
1687       user_data:
1688         str_replace:
1689           params:
1690             __rand_str__: { get_resource: random-str }
1691             # repo related
1692             __artifacts_version__: { get_param: artifacts_version }
1693             __docker_version__: { get_param: dcae_docker }
1694             __nexus_repo__: { get_param: nexus_repo }
1695             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1696             __nexus_username__: { get_param: nexus_username }
1697             __nexus_password__: { get_param: nexus_password }
1698             # conf for the ONAP environment where the DCAE bootstrap vm/conatiner runs
1699             __mac_addr__: { get_attr: [dcae_c_private_port, mac_address] }
1700             __dcae_ip_addr__: { get_param: dcae_ip_addr }
1701             __dcae_float_ip__: { get_attr: [dcae_c_floating_ip, floating_ip_address] }
1702             __dns_ip_addr__: { get_param: dns_ip_addr }
1703             __external_dns__: { get_param: external_dns }
1704             __dns_forwarder__: { get_param: dns_forwarder }
1705             __dcae_domain__: { get_param: dcae_domain }
1706             # conf for VMs DCAE is to bringup
1707             __openstack_keystone_url__: { get_param: keystone_url }
1708             __dcae_keystone_url__: { get_param: dcae_keystone_url }
1709             __dcaeos_cloud_env__: { get_param: cloud_env }
1710             __dcaeos_keystone_url__: { get_param: dcae_keystone_url }
1711             __dcaeos_region__: { get_param: openstack_region }
1712             __dcaeos_tenant_id__: { get_param: openstack_tenant_id }
1713             __dcaeos_tenant_name__: { get_param: openstack_tenant_name }
1714             __dcaeos_security_group__:
1715               str_replace:
1716                 template: 'onap_sg_rand'
1717                 params:
1718                   rand: { get_resource: random-str }
1719             #__dcaeos_security_group__: { get_attr: [onap_sg, name] }
1720             __dcaeos_username__: { get_param: openstack_username }
1721             __dcaeos_password__: { get_param: openstack_api_key }
1722             __dcaeos_key_name__: { get_resource: vm_key }
1723             __dcaeos_public_key__: { get_param: dcae_public_key }
1724             __dcaeos_private_key__: { get_param: dcae_private_key }
1725             __dcaeos_private_network_name__: { get_attr: [oam_onap, name] }
1726             __dcaeos_public_network_name__: { get_param: public_net_name }
1727             __dcaeos_ubuntu_1604_image__: { get_param: ubuntu_1604_image }
1728             __dcaeos_centos_7_image__: { get_param: dcae_centos_7_image }
1729             __dcaeos_flavor_id__: { get_param: flavor_medium }
1730             __dcaeos_flavor_id_cdap__: { get_param: flavor_large }
1731             __dcaeos_dnsaas_config_enabled__: { get_param: dnsaas_config_enabled }
1732             __dcaeos_dnsaas_region__: { get_param: dnsaas_region }
1733             __dcaeos_dnsaas_keystone_url__: { get_param: dnsaas_keystone_url }
1734             __dnsaas_tenant_name__: { get_param: dnsaas_tenant_name }
1735             __dcaeos_dnsaas_username__: { get_param: dnsaas_username }
1736             __dcaeos_dnsaas_password__: { get_param: dnsaas_password }
1737             # fixed private IPs
1738             __mr_ip_addr__: { get_param: mr_ip_addr }
1739             __policy_ip_addr__: { get_param: policy_ip_addr }
1740             __sdc_ip_addr__: { get_param: sdc_ip_addr }
1741             __openo_ip_addr__: { get_param: openo_ip_addr }
1742             __aai1_ip_addr__: { get_param: aai1_ip_addr }
1743             __aai2_ip_addr__: { get_param: aai2_ip_addr }
1744             # floating IPs
1745             __dns_floating_ip_addr__: { get_attr: [dns_floating_ip, floating_ip_address] }
1746             __aai1_floating_ip_addr__: { get_attr: [aai1_floating_ip, floating_ip_address] }
1747             __aai2_floating_ip_addr__: { get_attr: [aai2_floating_ip, floating_ip_address] }
1748             __mrouter_floating_ip_addr__: { get_attr: [mrouter_floating_ip, floating_ip_address] }
1749             __sdc_floating_ip_addr__: { get_attr: [sdc_floating_ip, floating_ip_address] }
1750             __policy_floating_ip_addr__: { get_attr: [policy_floating_ip, floating_ip_address] }
1751             __openo_floating_ip_addr__: { get_attr: [openo_floating_ip, floating_ip_address] }
1752             __dcae_c_floating_ip_addr__: { get_attr: [dcae_c_floating_ip, floating_ip_address] }
1753
1754           template: |
1755             #!/bin/bash
1756
1757             # Create configuration files
1758             mkdir -p /opt/config
1759             echo "__rand_str__" > /opt/config/dcae_zone.txt
1760             echo "__rand_str__" > /opt/config/rand_str.txt
1761             # repo related
1762             echo "__docker_version__" > /opt/config/docker_version.txt
1763             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1764             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1765             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1766             echo "__nexus_username__" > /opt/config/nexus_username.txt
1767             echo "__nexus_password__" > /opt/config/nexus_password.txt
1768             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1769             # conf for the ONAP environment where the DCAE bootstrap vm/conatiner runs
1770             echo "__mac_addr__" > /opt/config/mac_addr.txt
1771             echo "__dcae_ip_addr__" > /opt/config/dcae_ip_addr.txt
1772             echo "__dcae_float_ip__" > /opt/config/dcae_float_ip.txt
1773             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1774             echo "__external_dns__" > /opt/config/external_dns.txt
1775             echo "__dns_forwarder__" > /opt/config/dns_forwarder.txt
1776             echo "__dcae_domain__" > /opt/config/dcae_domain.txt
1777             # conf for the OpenStack env where DCAE is deployed
1778             echo "__openstack_keystone_url__" > /opt/config/openstack_keystone_url.txt
1779             echo "__dcaeos_cloud_env__" > /opt/config/cloud_env.txt
1780             echo "__dcaeos_keystone_url__" > /opt/config/keystone_url.txt
1781             echo "__dcaeos_region__" > /opt/config/openstack_region.txt
1782             echo "__dcaeos_tenant_id__" > /opt/config/tenant_id.txt
1783             echo "__dcaeos_tenant_name__" > /opt/config/tenant_name.txt
1784             echo "__dcaeos_username__" > /opt/config/openstack_user.txt
1785             echo "__dcaeos_password__" > /opt/config/openstack_password.txt
1786             echo "__dcaeos_key_name__" > /opt/config/key_name.txt
1787             echo "__dcaeos_public_key__" > /opt/config/pub_key.txt
1788             echo "__dcaeos_private_key__" > /opt/config/priv_key
1789             echo "__dcaeos_private_network_name__" > /opt/config/openstack_private_network_name.txt
1790             echo "__dcaeos_public_network_name__" > /opt/config/public_net_name.txt
1791             echo "__dcaeos_public_network_name__" > /opt/config/public_net_id.txt
1792             echo "__dcaeos_ubuntu_1604_image__" > /opt/config/ubuntu_1604_image.txt
1793             echo "__dcaeos_centos_7_image__" > /opt/config/centos_7_image.txt
1794             echo "__dcaeos_security_group__" > /opt/config/security_group.txt
1795             echo "__dcaeos_flavor_id__" > /opt/config/flavor_id.txt
1796             echo "__dcaeos_flavor_id_cdap__" > /opt/config/flavor_id_cdap.txt
1797             echo "__dcaeos_dnsaas_config_enabled__" > /opt/config/dnsaas_config_enabled.txt
1798             echo "__dcaeos_dnsaas_region__" > /opt/config/dnsaas_region.txt
1799             echo "__dcaeos_dnsaas_keystone_url__" > /opt/config/dnsaas_keystone_url.txt
1800             echo "__dnsaas_tenant_name__" > /opt/config/dnsaas_tenant_name.txt
1801             echo "__dcaeos_dnsaas_username__" > /opt/config/dnsaas_username.txt
1802             echo "__dcaeos_dnsaas_password__" > /opt/config/dnsaas_password.txt
1803             # fixed private IP addresses of other ONAP components
1804             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
1805             echo "__policy_ip_addr__" > /opt/config/policy_ip_addr.txt
1806             echo "__sdc_ip_addr__" > /opt/config/sdc_ip_addr.txt
1807             echo "__openo_ip_addr__" > /opt/config/openo_ip_addr.txt
1808             echo "__aai1_ip_addr__" > /opt/config/aai1_ip_addr.txt
1809             echo "__aai2_ip_addr__" > /opt/config/aai2_ip_addr.txt
1810             # floating IPs
1811             echo "__dns_floating_ip_addr__" > /opt/config/dns_floating_ip_addr.txt
1812             echo "__aai1_floating_ip_addr__" > /opt/config/aai1_floating_ip_addr.txt
1813             echo "__aai2_floating_ip_addr__" > /opt/config/aai2_floating_ip_addr.txt
1814             echo "__mrouter_floating_ip_addr__" > /opt/config/mrouter_floating_ip_addr.txt
1815             echo "__sdc_floating_ip_addr__" > /opt/config/sdc_floating_ip_addr.txt
1816             echo "__policy_floating_ip_addr__" > /opt/config/policy_floating_ip_addr.txt
1817             echo "__openo_floating_ip_addr__" > /opt/config/openo_floating_ip_addr.txt
1818             echo "__dcae_c_floating_ip_addr__" > /opt/config/dcae_c_floating_ip_addr.txt
1819
1820             # Download and run install script
1821             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/dcae2_install.sh -o /opt/dcae2_install.sh
1822             cd /opt
1823             chmod +x dcae2_install.sh
1824             ./dcae2_install.sh > /tmp/dcae2_install.log 2>&1
1825
1826
1827   # MUSIC instantiation
1828   music_private_port:
1829     type: OS::Neutron::Port
1830     properties:
1831       network: { get_resource: oam_onap }
1832       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: music_ip_addr }}]
1833       security_groups:
1834       - { get_resource: onap_sg }
1835
1836   music_floating_ip:
1837     type: OS::Neutron::FloatingIP
1838     properties:
1839       floating_network_id: { get_param: public_net_id }
1840       port_id: { get_resource: music_private_port }
1841
1842   music_vm:
1843     type: OS::Nova::Server
1844     properties:
1845       image: { get_param: ubuntu_1404_image }
1846       flavor: { get_param: flavor_large }
1847       name:
1848         str_replace:
1849           template: base-music
1850           params:
1851             base: { get_param: vm_base_name }
1852       key_name: { get_resource: vm_key }
1853       networks:
1854         - port: { get_resource: music_private_port }
1855       user_data_format: RAW
1856       user_data:
1857         str_replace:
1858           params:
1859             __nexus_repo__: { get_param: nexus_repo }
1860             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1861             __nexus_username__: { get_param: nexus_username }
1862             __nexus_password__: { get_param: nexus_password }
1863             __artifacts_version__: { get_param: artifacts_version }
1864             __dns_ip_addr__: { get_param: dns_ip_addr }
1865             __docker_version__: { get_param: music_docker }
1866             __cloud_env__: { get_param: cloud_env }
1867             __external_dns__: { get_param: external_dns }
1868           template: |
1869             #!/bin/bash
1870
1871             # Create configuration files
1872             mkdir -p /opt/config
1873             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1874             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1875             echo "__nexus_username__" > /opt/config/nexus_username.txt
1876             echo "__nexus_password__" > /opt/config/nexus_password.txt
1877             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1878             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1879             echo "__docker_version__" > /opt/config/docker_version.txt
1880             echo "__cloud_env__" > /opt/config/cloud_env.txt
1881             echo "__external_dns__" > /opt/config/external_dns.txt
1882
1883             # Download and run install script
1884             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/music_install.sh -o /opt/music_install.sh
1885             cd /opt
1886             chmod +x music_install.sh
1887             ./music_install.sh
1888
1889
1890   # OOF instantiation
1891   oof_private_port:
1892     type: OS::Neutron::Port
1893     properties:
1894       network: { get_resource: oam_onap }
1895       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: oof_ip_addr }}]
1896       security_groups:
1897       - { get_resource: onap_sg }
1898
1899   oof_floating_ip:
1900     type: OS::Neutron::FloatingIP
1901     properties:
1902       floating_network_id: { get_param: public_net_id }
1903       port_id: { get_resource: oof_private_port }
1904
1905   oof_vm:
1906     type: OS::Nova::Server
1907     properties:
1908       image: { get_param: ubuntu_1404_image }
1909       flavor: { get_param: flavor_medium }
1910       name:
1911         str_replace:
1912           template: base-oof
1913           params:
1914             base: { get_param: vm_base_name }
1915       key_name: { get_resource: vm_key }
1916       networks:
1917         - port: { get_resource: oof_private_port }
1918       user_data_format: RAW
1919       user_data:
1920         str_replace:
1921           params:
1922             __nexus_repo__: { get_param: nexus_repo }
1923             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1924             __nexus_username__: { get_param: nexus_username }
1925             __nexus_password__: { get_param: nexus_password }
1926             __artifacts_version__: { get_param: artifacts_version }
1927             __dns_ip_addr__: { get_param: dns_ip_addr }
1928             __docker_version__: { get_param: oof_docker }
1929             __cloud_env__: { get_param: cloud_env }
1930             __external_dns__: { get_param: external_dns }
1931           template: |
1932             #!/bin/bash
1933
1934             # Create configuration files
1935             mkdir -p /opt/config
1936             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1937             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1938             echo "__nexus_username__" > /opt/config/nexus_username.txt
1939             echo "__nexus_password__" > /opt/config/nexus_password.txt
1940             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1941             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1942             echo "__docker_version__" > /opt/config/docker_version.txt
1943             echo "__cloud_env__" > /opt/config/cloud_env.txt
1944             echo "__external_dns__" > /opt/config/external_dns.txt
1945
1946             # Download and run install script
1947             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/oof_install.sh -o /opt/oof_install.sh
1948             cd /opt
1949             chmod +x oof_install.sh
1950             ./oof_install.sh
1951
1952
1953   # AAF instantiation
1954   aaf_private_port:
1955     type: OS::Neutron::Port
1956     properties:
1957       network: { get_resource: oam_onap }
1958       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aaf_ip_addr }}]
1959       security_groups:
1960       - { get_resource: onap_sg }
1961
1962   aaf_floating_ip:
1963     type: OS::Neutron::FloatingIP
1964     properties:
1965       floating_network_id: { get_param: public_net_id }
1966       port_id: { get_resource: aaf_private_port }
1967
1968   aaf_vm:
1969     type: OS::Nova::Server
1970     properties:
1971       image: { get_param: ubuntu_1404_image }
1972       flavor: { get_param: flavor_medium }
1973       name:
1974         str_replace:
1975           template: base-aaf
1976           params:
1977             base: { get_param: vm_base_name }
1978       key_name: { get_resource: vm_key }
1979       networks:
1980         - port: { get_resource: aaf_private_port }
1981       user_data_format: RAW
1982       user_data:
1983         str_replace:
1984           params:
1985             __nexus_repo__: { get_param: nexus_repo }
1986             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1987             __nexus_username__: { get_param: nexus_username }
1988             __nexus_password__: { get_param: nexus_password }
1989             __artifacts_version__: { get_param: artifacts_version }
1990             __dns_ip_addr__: { get_param: dns_ip_addr }
1991             __docker_version__: { get_param: aaf_docker }
1992             __cloud_env__: { get_param: cloud_env }
1993             __external_dns__: { get_param: external_dns }
1994           template: |
1995             #!/bin/bash
1996
1997             # Create configuration files
1998             mkdir -p /opt/config
1999             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
2000             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
2001             echo "__nexus_username__" > /opt/config/nexus_username.txt
2002             echo "__nexus_password__" > /opt/config/nexus_password.txt
2003             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
2004             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
2005             echo "__docker_version__" > /opt/config/docker_version.txt
2006             echo "__cloud_env__" > /opt/config/cloud_env.txt
2007             echo "__external_dns__" > /opt/config/external_dns.txt
2008
2009             # Download and run install script
2010             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/aaf_install.sh -o /opt/aaf_install.sh
2011             cd /opt
2012             chmod +x aaf_install.sh
2013             ./aaf_install.sh
2014
2015   # NBI instantiation
2016   nbi_private_port:
2017     type: OS::Neutron::Port
2018     properties:
2019       network: { get_resource: oam_onap }
2020       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: nbi_ip_addr }}]
2021       security_groups:
2022       - { get_resource: onap_sg }
2023
2024   nbi_floating_ip:
2025     type: OS::Neutron::FloatingIP
2026     properties:
2027       floating_network_id: { get_param: public_net_id }
2028       port_id: { get_resource: nbi_private_port }
2029
2030   nbi_vm:
2031     type: OS::Nova::Server
2032     properties:
2033       image: { get_param: ubuntu_1604_image }
2034       flavor: { get_param: flavor_small }
2035       name:
2036         str_replace:
2037           template: base-nbi
2038           params:
2039             base: { get_param: vm_base_name }
2040       key_name: { get_resource: vm_key }
2041       networks:
2042         - port: { get_resource: nbi_private_port }
2043       user_data_format: RAW
2044       user_data:
2045         str_replace:
2046           params:
2047             __nexus_repo__: { get_param: nexus_repo }
2048             __nexus_docker_repo__: { get_param: nexus_docker_repo }
2049             __nexus_username__: { get_param: nexus_username }
2050             __nexus_password__: { get_param: nexus_password }
2051             __artifacts_version__: { get_param: artifacts_version }
2052             __dns_ip_addr__: { get_param: dns_ip_addr }
2053             __docker_version__: { get_param: nbi_docker }
2054             __cloud_env__: { get_param: cloud_env }
2055             __external_dns__: { get_param: external_dns }
2056           template: |
2057             #!/bin/bash
2058
2059             # Create configuration files
2060             mkdir -p /opt/config
2061             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
2062             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
2063             echo "__nexus_username__" > /opt/config/nexus_username.txt
2064             echo "__nexus_password__" > /opt/config/nexus_password.txt
2065             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
2066             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
2067             echo "__docker_version__" > /opt/config/docker_version.txt
2068             echo "__cloud_env__" > /opt/config/cloud_env.txt
2069             echo "__external_dns__" > /opt/config/external_dns.txt
2070
2071             # Download and run install script
2072             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/nbi_install.sh -o /opt/nbi_install.sh
2073             cd /opt
2074             chmod +x nbi_install.sh
2075             ./nbi_install.sh