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