Merge "Update for SDC Onboarding container"
[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
1028             # Download and run install script
1029             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/robot_install.sh -o /opt/robot_install.sh
1030             cd /opt
1031             chmod +x robot_install.sh
1032             ./robot_install.sh
1033
1034
1035   # VID instantiation
1036   vid_private_port:
1037     type: OS::Neutron::Port
1038     properties:
1039       network: { get_resource: oam_onap }
1040       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: vid_ip_addr }}]
1041       security_groups:
1042       - { get_resource: onap_sg }
1043
1044   vid_floating_ip:
1045     type: OS::Neutron::FloatingIP
1046     properties:
1047       floating_network_id: { get_param: public_net_id }
1048       port_id: { get_resource: vid_private_port }
1049
1050   vid_vm:
1051     type: OS::Nova::Server
1052     properties:
1053       image: { get_param: ubuntu_1404_image }
1054       flavor: { get_param: flavor_medium }
1055       name:
1056         str_replace:
1057           template: base-vid
1058           params:
1059             base: { get_param: vm_base_name }
1060       key_name: { get_resource: vm_key }
1061       networks:
1062         - port: { get_resource: vid_private_port }
1063       user_data_format: RAW
1064       user_data:
1065         str_replace:
1066           params:
1067             __nexus_repo__: { get_param: nexus_repo }
1068             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1069             __nexus_username__: { get_param: nexus_username }
1070             __nexus_password__: { get_param: nexus_password }
1071             __artifacts_version__: { get_param: artifacts_version }
1072             __dns_ip_addr__: { get_param: dns_ip_addr }
1073             __docker_version__: { get_param: vid_docker }
1074             __gerrit_branch__: { get_param: vid_branch }
1075             __cloud_env__: { get_param: cloud_env }
1076             __external_dns__: { get_param: external_dns }
1077             __vid_repo__: { get_param: vid_repo }
1078           template: |
1079             #!/bin/bash
1080
1081             # Create configuration files
1082             mkdir -p /opt/config
1083             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1084             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1085             echo "__nexus_username__" > /opt/config/nexus_username.txt
1086             echo "__nexus_password__" > /opt/config/nexus_password.txt
1087             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1088             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1089             echo "__docker_version__" > /opt/config/docker_version.txt
1090             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1091             echo "__cloud_env__" > /opt/config/cloud_env.txt
1092             echo "__external_dns__" > /opt/config/external_dns.txt
1093             echo "__vid_repo__" > /opt/config/remote_repo.txt
1094
1095             # Download and run install script
1096             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/vid_install.sh -o /opt/vid_install.sh
1097             cd /opt
1098             chmod +x vid_install.sh
1099             ./vid_install.sh
1100
1101
1102   # SDN-C instantiation
1103   sdnc_private_port:
1104     type: OS::Neutron::Port
1105     properties:
1106       network: { get_resource: oam_onap }
1107       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdnc_ip_addr }}]
1108       security_groups:
1109       - { get_resource: onap_sg }
1110
1111   sdnc_floating_ip:
1112     type: OS::Neutron::FloatingIP
1113     properties:
1114       floating_network_id: { get_param: public_net_id }
1115       port_id: { get_resource: sdnc_private_port }
1116
1117   sdnc_vm:
1118     type: OS::Nova::Server
1119     properties:
1120       image: { get_param: ubuntu_1404_image }
1121       flavor: { get_param: flavor_medium }
1122       name:
1123         str_replace:
1124           template: base-sdnc
1125           params:
1126             base: { get_param: vm_base_name }
1127       key_name: { get_resource: vm_key }
1128       networks:
1129         - port: { get_resource: sdnc_private_port }
1130       user_data_format: RAW
1131       user_data:
1132         str_replace:
1133           params:
1134             __nexus_repo__: { get_param: nexus_repo }
1135             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1136             __nexus_username__: { get_param: nexus_username }
1137             __nexus_password__: { get_param: nexus_password }
1138             __artifacts_version__: { get_param: artifacts_version }
1139             __dns_ip_addr__: { get_param: dns_ip_addr }
1140             __docker_version__: { get_param: sdnc_docker }
1141             __gerrit_branch__: { get_param: sdnc_branch }
1142             __dgbuilder_docker__: { get_param: dgbuilder_docker }
1143             __cloud_env__: { get_param: cloud_env }
1144             __external_dns__: { get_param: external_dns }
1145             __sdnc_repo__: { get_param: sdnc_repo }
1146           template: |
1147             #!/bin/bash
1148
1149             # Create configuration files
1150             mkdir -p /opt/config
1151             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1152             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1153             echo "__nexus_username__" > /opt/config/nexus_username.txt
1154             echo "__nexus_password__" > /opt/config/nexus_password.txt
1155             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1156             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1157             echo "__docker_version__" > /opt/config/docker_version.txt
1158             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1159             echo "__dgbuilder_docker__" > /opt/config/dgbuilder_version.txt
1160             echo "__cloud_env__" > /opt/config/cloud_env.txt
1161             echo "__external_dns__" > /opt/config/external_dns.txt
1162             echo "__sdnc_repo__" > /opt/config/remote_repo.txt
1163
1164             # Download and run install script
1165             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdnc_install.sh -o /opt/sdnc_install.sh
1166             cd /opt
1167             chmod +x sdnc_install.sh
1168             ./sdnc_install.sh
1169
1170
1171   # SDC instantiation
1172   sdc_private_port:
1173     type: OS::Neutron::Port
1174     properties:
1175       network: { get_resource: oam_onap }
1176       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: sdc_ip_addr }}]
1177       security_groups:
1178       - { get_resource: onap_sg }
1179
1180   sdc_floating_ip:
1181     type: OS::Neutron::FloatingIP
1182     properties:
1183       floating_network_id: { get_param: public_net_id }
1184       port_id: { get_resource: sdc_private_port }
1185
1186   sdc_volume_data:
1187     type: OS::Cinder::Volume
1188     properties:
1189       name: vol1-sdc-data
1190       size: 100
1191
1192   sdc_vm:
1193     type: OS::Nova::Server
1194     properties:
1195       image: { get_param: ubuntu_1604_image }
1196       flavor: { get_param: flavor_large }
1197       name:
1198         str_replace:
1199           template: base-sdc
1200           params:
1201             base: { get_param: vm_base_name }
1202       key_name: { get_resource: vm_key }
1203       networks:
1204         - port: { get_resource: sdc_private_port }
1205       block_device_mapping:
1206         - device_name: /dev/vdb
1207           volume_id: {get_resource: sdc_volume_data}
1208       user_data_format: RAW
1209       user_data:
1210         str_replace:
1211           params:
1212             __nexus_repo__: { get_param: nexus_repo }
1213             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1214             __nexus_username__: { get_param: nexus_username }
1215             __nexus_password__: { get_param: nexus_password }
1216             __env_name__: { get_param: dmaap_topic }
1217             __artifacts_version__: { get_param: artifacts_version }
1218             __dns_ip_addr__: { get_param: dns_ip_addr }
1219             __mr_ip_addr__: { get_param: mr_ip_addr }
1220             __private_ip__: { get_param: sdc_ip_addr }
1221             __docker_version__: { get_param: sdc_docker }
1222             __sdc_wfd_docker__: { get_param: sdc_wfd_docker }
1223             __gerrit_branch__: { get_param: sdc_branch }
1224             __cloud_env__: { get_param: cloud_env }
1225             __external_dns__: { get_param: external_dns }
1226             __sdc_repo__: { get_param: sdc_repo }
1227           template: |
1228             #!/bin/bash
1229
1230             # Create configuration files
1231             mkdir -p /opt/config
1232             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1233             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1234             echo "__nexus_username__" > /opt/config/nexus_username.txt
1235             echo "__nexus_password__" > /opt/config/nexus_password.txt
1236             echo "__env_name__" > /opt/config/env_name.txt
1237             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
1238             echo "__private_ip__" > /opt/config/private_ip.txt
1239             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1240             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1241             echo "__docker_version__" > /opt/config/docker_version.txt
1242             echo "__sdc_wfd_docker__" > /opt/config/sdc_wfd_docker.txt
1243             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1244             echo "__cloud_env__" > /opt/config/cloud_env.txt
1245             echo "__external_dns__" > /opt/config/external_dns.txt
1246             echo "__sdc_repo__" > /opt/config/remote_repo.txt
1247
1248             # Download and run install script
1249             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
1250             cd /opt
1251             chmod +x sdc_install.sh
1252             ./sdc_install.sh
1253
1254
1255   # PORTAL instantiation
1256   portal_private_port:
1257     type: OS::Neutron::Port
1258     properties:
1259       network: { get_resource: oam_onap }
1260       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: portal_ip_addr }}]
1261       security_groups:
1262       - { get_resource: onap_sg }
1263
1264   portal_floating_ip:
1265     type: OS::Neutron::FloatingIP
1266     properties:
1267       floating_network_id: { get_param: public_net_id }
1268       port_id: { get_resource: portal_private_port }
1269
1270   portal_vm:
1271     type: OS::Nova::Server
1272     properties:
1273       image: { get_param: ubuntu_1404_image }
1274       flavor: { get_param: flavor_medium }
1275       name:
1276         str_replace:
1277           template: base-portal
1278           params:
1279             base: { get_param: vm_base_name }
1280       key_name: { get_resource: vm_key }
1281       networks:
1282         - port: { get_resource: portal_private_port }
1283       user_data_format: RAW
1284       user_data:
1285         str_replace:
1286           params:
1287             __nexus_repo__: { get_param: nexus_repo }
1288             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1289             __nexus_username__: { get_param: nexus_username }
1290             __nexus_password__: { get_param: nexus_password }
1291             __artifacts_version__: { get_param: artifacts_version }
1292             __dns_ip_addr__: { get_param: dns_ip_addr }
1293             __public_ip__: { get_attr: [portal_floating_ip, floating_ip_address] }
1294             __docker_version__: { get_param: portal_docker }
1295             __gerrit_branch__: { get_param: portal_branch }
1296             __cli_docker__: { get_param: cli_docker }
1297             __cloud_env__: { get_param: cloud_env }
1298             __external_dns__: { get_param: external_dns }
1299             __portal_repo__: { get_param: portal_repo }
1300           template: |
1301             #!/bin/bash
1302
1303             # Create configuration files
1304             mkdir -p /opt/config
1305             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1306             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1307             echo "__nexus_username__" > /opt/config/nexus_username.txt
1308             echo "__nexus_password__" > /opt/config/nexus_password.txt
1309             echo "__public_ip__" > /opt/config/public_ip.txt
1310             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1311             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1312             echo "__docker_version__" > /opt/config/docker_version.txt
1313             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1314             echo "__cli_docker__" > /opt/config/cli_docker_version.txt
1315             echo "__cloud_env__" > /opt/config/cloud_env.txt
1316             echo "__external_dns__" > /opt/config/external_dns.txt
1317             echo "__portal_repo__" > /opt/config/remote_repo.txt
1318
1319             # Download and run install script
1320             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/portal_install.sh -o /opt/portal_install.sh
1321             cd /opt
1322             chmod +x portal_install.sh
1323             ./portal_install.sh
1324
1325
1326   # Policy Engine instantiation
1327   policy_private_port:
1328     type: OS::Neutron::Port
1329     properties:
1330       network: { get_resource: oam_onap }
1331       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: policy_ip_addr }}]
1332       security_groups:
1333       - { get_resource: onap_sg }
1334
1335   policy_floating_ip:
1336     type: OS::Neutron::FloatingIP
1337     properties:
1338       floating_network_id: { get_param: public_net_id }
1339       port_id: { get_resource: policy_private_port }
1340
1341   policy_vm:
1342     type: OS::Nova::Server
1343     properties:
1344       image: { get_param: ubuntu_1404_image }
1345       flavor: { get_param: flavor_medium }
1346       name:
1347         str_replace:
1348           template: base-policy
1349           params:
1350             base: { get_param: vm_base_name }
1351       key_name: { get_resource: vm_key }
1352       networks:
1353         - port: { get_resource: policy_private_port }
1354       user_data_format: RAW
1355       user_data:
1356         str_replace:
1357           params:
1358             __nexus_repo__: { get_param: nexus_repo }
1359             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1360             __nexus_username__: { get_param: nexus_username }
1361             __nexus_password__: { get_param: nexus_password }
1362             __artifacts_version__: { get_param: artifacts_version }
1363             __dns_ip_addr__: { get_param: dns_ip_addr }
1364             __public_ip__: { get_attr: [policy_floating_ip, floating_ip_address] }
1365             __docker_version__: { get_param: policy_docker }
1366             __gerrit_branch__: { get_param: policy_branch }
1367             __cloud_env__: { get_param: cloud_env }
1368             __external_dns__: { get_param: external_dns }
1369             __policy_repo__: { get_param: policy_repo }
1370           template: |
1371             #!/bin/bash
1372
1373             # Create configuration files
1374             mkdir -p /opt/config
1375             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1376             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1377             echo "__nexus_username__" > /opt/config/nexus_username.txt
1378             echo "__nexus_password__" > /opt/config/nexus_password.txt
1379             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1380             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1381             echo "__public_ip__" > /opt/config/public_ip.txt
1382             echo "__docker_version__" > /opt/config/docker_version.txt
1383             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1384             echo "__cloud_env__" > /opt/config/cloud_env.txt
1385             echo "__external_dns__" > /opt/config/external_dns.txt
1386             echo "__policy_repo__" > /opt/config/remote_repo.txt
1387
1388             # Download and run install script
1389             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/policy_install.sh -o /opt/policy_install.sh
1390             cd /opt
1391             chmod +x policy_install.sh
1392             ./policy_install.sh
1393
1394
1395   # APP-C instantiation
1396   appc_private_port:
1397     type: OS::Neutron::Port
1398     properties:
1399       network: { get_resource: oam_onap }
1400       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: appc_ip_addr }}]
1401       security_groups:
1402       - { get_resource: onap_sg }
1403
1404   appc_floating_ip:
1405     type: OS::Neutron::FloatingIP
1406     properties:
1407       floating_network_id: { get_param: public_net_id }
1408       port_id: { get_resource: appc_private_port }
1409
1410   appc_vm:
1411     type: OS::Nova::Server
1412     properties:
1413       image: { get_param: ubuntu_1404_image }
1414       flavor: { get_param: flavor_medium }
1415       name:
1416         str_replace:
1417           template: base-appc
1418           params:
1419             base: { get_param: vm_base_name }
1420       key_name: { get_resource: vm_key }
1421       networks:
1422         - port: { get_resource: appc_private_port }
1423       user_data_format: RAW
1424       user_data:
1425         str_replace:
1426           params:
1427             __nexus_repo__: { get_param: nexus_repo }
1428             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1429             __nexus_username__: { get_param: nexus_username }
1430             __nexus_password__: { get_param: nexus_password }
1431             __dmaap_topic__: { get_param: dmaap_topic }
1432             __artifacts_version__: { get_param: artifacts_version }
1433             __dns_ip_addr__: { get_param: dns_ip_addr }
1434             __docker_version__: { get_param: appc_docker }
1435             __gerrit_branch__: { get_param: appc_branch }
1436             __dgbuilder_docker__: { get_param: dgbuilder_docker }
1437             __cloud_env__: { get_param: cloud_env }
1438             __external_dns__: { get_param: external_dns }
1439             __appc_repo__: { get_param: appc_repo }
1440           template: |
1441             #!/bin/bash
1442
1443             # Create configuration files
1444             mkdir -p /opt/config
1445             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1446             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1447             echo "__nexus_username__" > /opt/config/nexus_username.txt
1448             echo "__nexus_password__" > /opt/config/nexus_password.txt
1449             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1450             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1451             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
1452             echo "__docker_version__" > /opt/config/docker_version.txt
1453             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1454             echo "__dgbuilder_docker__" > /opt/config/dgbuilder_version.txt
1455             echo "__cloud_env__" > /opt/config/cloud_env.txt
1456             echo "__external_dns__" > /opt/config/external_dns.txt
1457             echo "__appc_repo__" > /opt/config/remote_repo.txt
1458
1459             # Download and run install script
1460             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/appc_install.sh -o /opt/appc_install.sh
1461             cd /opt
1462             chmod +x appc_install.sh
1463             ./appc_install.sh
1464
1465
1466   # CLAMP instantiation
1467   clamp_private_port:
1468     type: OS::Neutron::Port
1469     properties:
1470       network: { get_resource: oam_onap }
1471       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: clamp_ip_addr }}]
1472       security_groups:
1473       - { get_resource: onap_sg }
1474
1475   clamp_floating_ip:
1476     type: OS::Neutron::FloatingIP
1477     properties:
1478       floating_network_id: { get_param: public_net_id }
1479       port_id: { get_resource: clamp_private_port }
1480
1481   clamp_vm:
1482     type: OS::Nova::Server
1483     properties:
1484       image: { get_param: ubuntu_1604_image }
1485       flavor: { get_param: flavor_medium }
1486       name:
1487         str_replace:
1488           template: base-clamp
1489           params:
1490             base: { get_param: vm_base_name }
1491       key_name: { get_resource: vm_key }
1492       networks:
1493         - port: { get_resource: clamp_private_port }
1494       user_data_format: RAW
1495       user_data:
1496         str_replace:
1497           params:
1498             __nexus_repo__: { get_param: nexus_repo }
1499             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1500             __nexus_username__: { get_param: nexus_username }
1501             __nexus_password__: { get_param: nexus_password }
1502             __openstack_username__: { get_param: openstack_username }
1503             __openstack_tenant_id__: { get_param: openstack_tenant_id }
1504             __openstack_api_key__: { get_param: openstack_api_key }
1505             __openstack_region__: { get_param: openstack_region }
1506             __keystone_url__: { get_param: keystone_url }
1507             __dmaap_topic__: { get_param: dmaap_topic }
1508             __artifacts_version__: { get_param: artifacts_version }
1509             __dns_ip_addr__: { get_param: dns_ip_addr }
1510             __docker_version__: { get_param: clamp_docker }
1511             __gerrit_branch__: { get_param: clamp_branch }
1512             __cloud_env__: { get_param: cloud_env }
1513             __external_dns__: { get_param: external_dns }
1514             __clamp_repo__: { get_param: clamp_repo }
1515           template: |
1516             #!/bin/bash
1517
1518             # Create configuration files
1519             mkdir -p /opt/config
1520             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1521             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1522             echo "__nexus_username__" > /opt/config/nexus_username.txt
1523             echo "__nexus_password__" > /opt/config/nexus_password.txt
1524             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1525             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1526             echo "__dmaap_topic__" > /opt/config/dmaap_topic.txt
1527             echo "__openstack_username__" > /opt/config/openstack_username.txt
1528             echo "__openstack_tenant_id__" > /opt/config/tenant_id.txt
1529             echo "__openstack_api_key__" > /opt/config/openstack_api_key.txt
1530             echo "__openstack_region__" > /opt/config/openstack_region.txt
1531             echo "__keystone_url__" > /opt/config/keystone.txt
1532             echo "__docker_version__" > /opt/config/docker_version.txt
1533             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1534             echo "__cloud_env__" > /opt/config/cloud_env.txt
1535             echo "__external_dns__" > /opt/config/external_dns.txt
1536             echo "__clamp_repo__" > /opt/config/remote_repo.txt
1537
1538             # Download and run install script
1539             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
1540             cd /opt
1541             chmod +x clamp_install.sh
1542             ./clamp_install.sh
1543
1544
1545   # OPEN-O VM instantiation
1546   openo_private_port:
1547     type: OS::Neutron::Port
1548     properties:
1549       network: { get_resource: oam_onap }
1550       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: openo_ip_addr }}]
1551       security_groups:
1552       - { get_resource: onap_sg }
1553
1554   openo_floating_ip:
1555     type: OS::Neutron::FloatingIP
1556     properties:
1557       floating_network_id: { get_param: public_net_id }
1558       port_id: { get_resource: openo_private_port }
1559
1560   openo_vm:
1561     type: OS::Nova::Server
1562     properties:
1563       image: { get_param: ubuntu_1604_image }
1564       flavor: { get_param: flavor_large }
1565       name:
1566         str_replace:
1567           template: base-multi-service
1568           params:
1569             base: { get_param: vm_base_name }
1570       key_name: { get_resource: vm_key }
1571       networks:
1572         - port: { get_resource: openo_private_port }
1573       user_data_format: RAW
1574       user_data:
1575         str_replace:
1576           params:
1577             __nexus_repo__: { get_param: nexus_repo }
1578             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1579             __nexus_username__: { get_param: nexus_username }
1580             __nexus_password__: { get_param: nexus_password }
1581             __artifacts_version__: { get_param: artifacts_version }
1582             __dns_ip_addr__: { get_param: dns_ip_addr }
1583             __oam_network_cidr__: { get_param: oam_network_cidr }
1584             __aai1_ip_addr__: { get_param: aai1_ip_addr }
1585             __aai2_ip_addr__: { get_param: aai2_ip_addr }
1586             __appc_ip_addr__: { get_param: appc_ip_addr }
1587             __dcae_ip_addr__: { get_param: dcae_ip_addr }
1588             __so_ip_addr__: { get_param: so_ip_addr }
1589             __mr_ip_addr__: { get_param: mr_ip_addr }
1590             __policy_ip_addr__: { get_param: policy_ip_addr }
1591             __portal_ip_addr__: { get_param: portal_ip_addr }
1592             __robot_ip_addr__: { get_param: robot_ip_addr }
1593             __sdc_ip_addr__: { get_param: sdc_ip_addr }
1594             __sdnc_ip_addr__: { get_param: sdnc_ip_addr }
1595             __vid_ip_addr__: { get_param: vid_ip_addr }
1596             __clamp_ip_addr__: { get_param: clamp_ip_addr }
1597             __openo_ip_addr__: { get_param: openo_ip_addr }
1598             __cloud_env__: { get_param: cloud_env }
1599             __external_dns__: { get_param: external_dns }
1600             __vnfsdk_branch__: { get_param: vnfsdk_branch }
1601             __msb_docker__: { get_param: msb_docker }
1602             __mvim_docker__: { get_param: mvim_docker }
1603             __mvim_openstack_docker__: { get_param: mvim_openstack_docker }
1604             __uui_docker__: { get_param: uui_docker }
1605             __esr_docker__: { get_param: esr_docker }
1606             __vnfsdk_repo__: { get_param: vnfsdk_repo }
1607             __vfc_nokia_docker__: { get_param: vfc_nokia_docker }
1608             __vfc_nokiav2_docker__: { get_param: vfc_nokiav2_docker }
1609             __cbam_ip__: { get_param: cbam_ip }
1610             __cbam_username__: { get_param: cbam_username }
1611             __cbam_password__: { get_param: cbam_password }
1612             __vfc_ztevnfmdriver_docker__: { get_param: vfc_ztevnfmdriver_docker }
1613             __vfc_multivimproxy_docker__: { get_param: vfc_multivimproxy_docker }
1614             __vfc_ztesdncdriver_docker__: { get_param: vfc_ztesdncdriver_docker }
1615             __vfc_vnfres_docker__: { get_param: vfc_vnfres_docker }
1616             __vfc_vnfmgr_docker__: { get_param: vfc_vnfmgr_docker }
1617             __vfc_vnflcm_docker__: { get_param: vfc_vnflcm_docker }
1618             __vfc_resmanagement_docker__: { get_param: vfc_resmanagement_docker }
1619             __vfc_nslcm_docker__: { get_param: vfc_nslcm_docker }
1620             __vfc_huawei_docker__: { get_param: vfc_huawei_docker }
1621             __vfc_jujudriver_docker__: { get_param: vfc_jujudriver_docker }
1622             __vfc_gvnfmdriver_docker__: { get_param: vfc_gvnfmdriver_docker }
1623             __vfc_emsdriver_docker__: { get_param: vfc_emsdriver_docker }
1624             __vfc_catalog_docker__: { get_param: vfc_catalog_docker }
1625             __vfc_wfengine_mgrservice_docker__: { get_param: vfc_wfengine_mgrservice_docker }
1626             __vfc_wfengine_activiti_docker__: { get_param: vfc_wfengine_activiti_docker }
1627           template: |
1628             #!/bin/bash
1629
1630             # Create configuration files
1631             mkdir -p /opt/config
1632             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1633             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1634             echo "__nexus_username__" > /opt/config/nexus_username.txt
1635             echo "__nexus_password__" > /opt/config/nexus_password.txt
1636             echo "__cloud_env__" > /opt/config/cloud_env.txt
1637             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1638             echo "__oam_network_cidr__" > /opt/config/oam_network_cidr.txt
1639             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1640             echo "__external_dns__" > /opt/config/external_dns.txt
1641             echo "__vnfsdk_branch__" > /opt/config/vnfsdk_branch.txt
1642             echo "__msb_docker__" > /opt/config/msb_docker.txt
1643             echo "__mvim_docker__" > /opt/config/mvim_docker.txt
1644             echo "__mvim_openstack_docker__" > /opt/config/mvim_openstack_docker.txt
1645             echo "__uui_docker__" > /opt/config/uui_docker.txt
1646             echo "__esr_docker__" > /opt/config/esr_docker.txt
1647             echo "__vnfsdk_repo__" > /opt/config/vnfsdk_repo.txt
1648             echo "__cbam_ip__" > /opt/config/cbam_ip.txt
1649             echo "__cbam_username__" > /opt/config/cbam_username.txt
1650             echo "__cbam_password__" > /opt/config/cbam_password.txt
1651
1652             echo "export NOKIA_DOCKER_VER=__vfc_nokia_docker__" >> /opt/config/vfc_docker.txt
1653             echo "export NOKIAV2_DOCKER_VER=__vfc_nokiav2_docker__" >> /opt/config/vfc_docker.txt
1654             echo "export MULTIVIMPROXY_DOCKER_VER=__vfc_multivimproxy_docker__" >> /opt/config/vfc_docker.txt
1655             echo "export ZTEVNFMDRIVER_DOCKER_VER=__vfc_ztevnfmdriver_docker__" >> /opt/config/vfc_docker.txt
1656             echo "export ZTESDNCDRIVER_DOCKER_VER=__vfc_ztesdncdriver_docker__" >> /opt/config/vfc_docker.txt
1657             echo "export VNFRES_DOCKER_VER=__vfc_vnfres_docker__" >> /opt/config/vfc_docker.txt
1658             echo "export VNFMGR_DOCKER_VER=__vfc_vnfmgr_docker__" >> /opt/config/vfc_docker.txt
1659             echo "export VNFLCM_DOCKER_VER=__vfc_vnflcm_docker__" >> /opt/config/vfc_docker.txt
1660             echo "export RESMANAGEMENT_DOCKER_VER=__vfc_resmanagement_docker__" >> /opt/config/vfc_docker.txt
1661             echo "export NSLCM_DOCKER_VER=__vfc_nslcm_docker__" >> /opt/config/vfc_docker.txt
1662             echo "export HUAWEI_DOCKER_VER=__vfc_huawei_docker__" >> /opt/config/vfc_docker.txt
1663             echo "export JUJUDRIVER_DOCKER_VER=__vfc_jujudriver_docker__" >> /opt/config/vfc_docker.txt
1664             echo "export GVNFMDRIVER_DOCKER_VER=__vfc_gvnfmdriver_docker__" >> /opt/config/vfc_docker.txt
1665             echo "export EMSDRIVER_DOCKER_VER=__vfc_emsdriver_docker__" >> /opt/config/vfc_docker.txt
1666             echo "export CATALOG_DOCKER_VER=__vfc_catalog_docker__" >> /opt/config/vfc_docker.txt
1667             echo "export MGRSERVICE_DOCKER_VER=__vfc_wfengine_mgrservice_docker__" >> /opt/config/vfc_docker.txt
1668             echo "export ACTIVITI_DOCKER_VER=__vfc_wfengine_activiti_docker__" >> /opt/config/vfc_docker.txt
1669
1670             # Create env file with the IP address of all ONAP components
1671             echo "export AAI_IP1=__aai1_ip_addr__" >> /opt/config/onap_ips.txt
1672             echo "export AAI_IP2=__aai2_ip_addr__" >> /opt/config/onap_ips.txt
1673             echo "export APPC_IP=__appc_ip_addr__" >> /opt/config/onap_ips.txt
1674             echo "export DCAE_IP=__dcae_ip_addr__" >> /opt/config/onap_ips.txt
1675             echo "export SO_IP=__so_ip_addr__" >> /opt/config/onap_ips.txt
1676             echo "export MR_IP=__mr_ip_addr__" >> /opt/config/onap_ips.txt
1677             echo "export POLICY_IP=__policy_ip_addr__" >> /opt/config/onap_ips.txt
1678             echo "export PORTAL_IP=__portal_ip_addr__" >> /opt/config/onap_ips.txt
1679             echo "export ROBOT_IP=__robot_ip_addr__" >> /opt/config/onap_ips.txt
1680             echo "export SDC_IP=__sdc_ip_addr__" >> /opt/config/onap_ips.txt
1681             echo "export SDNC_IP=__sdnc_ip_addr__" >> /opt/config/onap_ips.txt
1682             echo "export VID_IP=__vid_ip_addr__" >> /opt/config/onap_ips.txt
1683             echo "export CLAMP_IP=__clamp_ip_addr__" >> /opt/config/onap_ips.txt
1684             echo "export OPENO_IP=__openo_ip_addr__" >> /opt/config/onap_ips.txt
1685
1686             # Download and run install script
1687             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/openo_install.sh -o /opt/openo_install.sh
1688             cd /opt
1689             chmod +x openo_install.sh
1690             ./openo_install.sh
1691
1692
1693   # DCAE GEN 2 Controller instantiation
1694   dcae_c_private_port:
1695     type: OS::Neutron::Port
1696     properties:
1697       network: { get_resource: oam_onap }
1698       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: dcae_ip_addr }}]
1699       security_groups:
1700       - { get_resource: onap_sg }
1701
1702   dcae_c_floating_ip:
1703     type: OS::Neutron::FloatingIP
1704     properties:
1705       floating_network_id: { get_param: public_net_id }
1706       port_id: { get_resource: dcae_c_private_port }
1707
1708   dcae_c_vm:
1709     type: OS::Nova::Server
1710     properties:
1711       image: { get_param: ubuntu_1604_image }
1712       flavor: { get_param: flavor_small }
1713       name:
1714         str_replace:
1715           template: base-dcae
1716           params:
1717             base: { get_param: vm_base_name }
1718       key_name: { get_resource: vm_key }
1719       networks:
1720         - port: { get_resource: dcae_c_private_port }
1721       #security_groups:
1722       #  - { get_resource: onap_sg }
1723       user_data_format: RAW
1724       user_data:
1725         str_replace:
1726           params:
1727             __rand_str__: { get_resource: random-str }
1728             # repo related
1729             __artifacts_version__: { get_param: artifacts_version }
1730             __docker_version__: { get_param: dcae_docker }
1731             __nexus_repo__: { get_param: nexus_repo }
1732             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1733             __nexus_username__: { get_param: nexus_username }
1734             __nexus_password__: { get_param: nexus_password }
1735             # conf for the ONAP environment where the DCAE bootstrap vm/conatiner runs
1736             __mac_addr__: { get_attr: [dcae_c_private_port, mac_address] }
1737             __dcae_ip_addr__: { get_param: dcae_ip_addr }
1738             __dcae_float_ip__: { get_attr: [dcae_c_floating_ip, floating_ip_address] }
1739             __dns_ip_addr__: { get_param: dns_ip_addr }
1740             __external_dns__: { get_param: external_dns }
1741             __dns_forwarder__: { get_param: dns_forwarder }
1742             __dcae_domain__: { get_param: dcae_domain }
1743             # conf for VMs DCAE is to bringup
1744             __openstack_keystone_url__: { get_param: keystone_url }
1745             __dcae_keystone_url__: { get_param: dcae_keystone_url }
1746             __dcaeos_cloud_env__: { get_param: cloud_env }
1747             __dcaeos_keystone_url__: { get_param: dcae_keystone_url }
1748             __dcaeos_region__: { get_param: openstack_region }
1749             __dcaeos_tenant_id__: { get_param: openstack_tenant_id }
1750             __dcaeos_tenant_name__: { get_param: openstack_tenant_name }
1751             __dcaeos_security_group__:
1752               str_replace:
1753                 template: 'onap_sg_rand'
1754                 params:
1755                   rand: { get_resource: random-str }
1756             #__dcaeos_security_group__: { get_attr: [onap_sg, name] }
1757             __dcaeos_username__: { get_param: openstack_username }
1758             __dcaeos_password__: { get_param: openstack_api_key }
1759             __dcaeos_key_name__: { get_resource: vm_key }
1760             __dcaeos_public_key__: { get_param: dcae_public_key }
1761             __dcaeos_private_key__: { get_param: dcae_private_key }
1762             __dcaeos_private_network_name__: { get_attr: [oam_onap, name] }
1763             __dcaeos_public_network_name__: { get_param: public_net_name }
1764             __dcaeos_ubuntu_1604_image__: { get_param: ubuntu_1604_image }
1765             __dcaeos_centos_7_image__: { get_param: dcae_centos_7_image }
1766             __dcaeos_flavor_id__: { get_param: flavor_medium }
1767             __dcaeos_flavor_id_cdap__: { get_param: flavor_large }
1768             __dcaeos_dnsaas_config_enabled__: { get_param: dnsaas_config_enabled }
1769             __dcaeos_dnsaas_region__: { get_param: dnsaas_region }
1770             __dcaeos_dnsaas_keystone_url__: { get_param: dnsaas_keystone_url }
1771             __dnsaas_tenant_name__: { get_param: dnsaas_tenant_name }
1772             __dcaeos_dnsaas_username__: { get_param: dnsaas_username }
1773             __dcaeos_dnsaas_password__: { get_param: dnsaas_password }
1774             # fixed private IPs
1775             __mr_ip_addr__: { get_param: mr_ip_addr }
1776             __policy_ip_addr__: { get_param: policy_ip_addr }
1777             __sdc_ip_addr__: { get_param: sdc_ip_addr }
1778             __openo_ip_addr__: { get_param: openo_ip_addr }
1779             __aai1_ip_addr__: { get_param: aai1_ip_addr }
1780             __aai2_ip_addr__: { get_param: aai2_ip_addr }
1781             # floating IPs
1782             __dns_floating_ip_addr__: { get_attr: [dns_floating_ip, floating_ip_address] }
1783             __aai1_floating_ip_addr__: { get_attr: [aai1_floating_ip, floating_ip_address] }
1784             __aai2_floating_ip_addr__: { get_attr: [aai2_floating_ip, floating_ip_address] }
1785             __mrouter_floating_ip_addr__: { get_attr: [mrouter_floating_ip, floating_ip_address] }
1786             __sdc_floating_ip_addr__: { get_attr: [sdc_floating_ip, floating_ip_address] }
1787             __policy_floating_ip_addr__: { get_attr: [policy_floating_ip, floating_ip_address] }
1788             __openo_floating_ip_addr__: { get_attr: [openo_floating_ip, floating_ip_address] }
1789             __dcae_c_floating_ip_addr__: { get_attr: [dcae_c_floating_ip, floating_ip_address] }
1790
1791           template: |
1792             #!/bin/bash
1793
1794             # Create configuration files
1795             mkdir -p /opt/config
1796             echo "__rand_str__" > /opt/config/dcae_zone.txt
1797             echo "__rand_str__" > /opt/config/rand_str.txt
1798             # repo related
1799             echo "__docker_version__" > /opt/config/docker_version.txt
1800             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1801             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1802             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1803             echo "__nexus_username__" > /opt/config/nexus_username.txt
1804             echo "__nexus_password__" > /opt/config/nexus_password.txt
1805             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1806             # conf for the ONAP environment where the DCAE bootstrap vm/conatiner runs
1807             echo "__mac_addr__" > /opt/config/mac_addr.txt
1808             echo "__dcae_ip_addr__" > /opt/config/dcae_ip_addr.txt
1809             echo "__dcae_float_ip__" > /opt/config/dcae_float_ip.txt
1810             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1811             echo "__external_dns__" > /opt/config/external_dns.txt
1812             echo "__dns_forwarder__" > /opt/config/dns_forwarder.txt
1813             echo "__dcae_domain__" > /opt/config/dcae_domain.txt
1814             # conf for the OpenStack env where DCAE is deployed
1815             echo "__openstack_keystone_url__" > /opt/config/openstack_keystone_url.txt
1816             echo "__dcaeos_cloud_env__" > /opt/config/cloud_env.txt
1817             echo "__dcaeos_keystone_url__" > /opt/config/keystone_url.txt
1818             echo "__dcaeos_region__" > /opt/config/openstack_region.txt
1819             echo "__dcaeos_tenant_id__" > /opt/config/tenant_id.txt
1820             echo "__dcaeos_tenant_name__" > /opt/config/tenant_name.txt
1821             echo "__dcaeos_username__" > /opt/config/openstack_user.txt
1822             echo "__dcaeos_password__" > /opt/config/openstack_password.txt
1823             echo "__dcaeos_key_name__" > /opt/config/key_name.txt
1824             echo "__dcaeos_public_key__" > /opt/config/pub_key.txt
1825             echo "__dcaeos_private_key__" > /opt/config/priv_key
1826             echo "__dcaeos_private_network_name__" > /opt/config/openstack_private_network_name.txt
1827             echo "__dcaeos_public_network_name__" > /opt/config/public_net_name.txt
1828             echo "__dcaeos_public_network_name__" > /opt/config/public_net_id.txt
1829             echo "__dcaeos_ubuntu_1604_image__" > /opt/config/ubuntu_1604_image.txt
1830             echo "__dcaeos_centos_7_image__" > /opt/config/centos_7_image.txt
1831             echo "__dcaeos_security_group__" > /opt/config/security_group.txt
1832             echo "__dcaeos_flavor_id__" > /opt/config/flavor_id.txt
1833             echo "__dcaeos_flavor_id_cdap__" > /opt/config/flavor_id_cdap.txt
1834             echo "__dcaeos_dnsaas_config_enabled__" > /opt/config/dnsaas_config_enabled.txt
1835             echo "__dcaeos_dnsaas_region__" > /opt/config/dnsaas_region.txt
1836             echo "__dcaeos_dnsaas_keystone_url__" > /opt/config/dnsaas_keystone_url.txt
1837             echo "__dnsaas_tenant_name__" > /opt/config/dnsaas_tenant_name.txt
1838             echo "__dcaeos_dnsaas_username__" > /opt/config/dnsaas_username.txt
1839             echo "__dcaeos_dnsaas_password__" > /opt/config/dnsaas_password.txt
1840             # fixed private IP addresses of other ONAP components
1841             echo "__mr_ip_addr__" > /opt/config/mr_ip_addr.txt
1842             echo "__policy_ip_addr__" > /opt/config/policy_ip_addr.txt
1843             echo "__sdc_ip_addr__" > /opt/config/sdc_ip_addr.txt
1844             echo "__openo_ip_addr__" > /opt/config/openo_ip_addr.txt
1845             echo "__aai1_ip_addr__" > /opt/config/aai1_ip_addr.txt
1846             echo "__aai2_ip_addr__" > /opt/config/aai2_ip_addr.txt
1847             # floating IPs
1848             echo "__dns_floating_ip_addr__" > /opt/config/dns_floating_ip_addr.txt
1849             echo "__aai1_floating_ip_addr__" > /opt/config/aai1_floating_ip_addr.txt
1850             echo "__aai2_floating_ip_addr__" > /opt/config/aai2_floating_ip_addr.txt
1851             echo "__mrouter_floating_ip_addr__" > /opt/config/mrouter_floating_ip_addr.txt
1852             echo "__sdc_floating_ip_addr__" > /opt/config/sdc_floating_ip_addr.txt
1853             echo "__policy_floating_ip_addr__" > /opt/config/policy_floating_ip_addr.txt
1854             echo "__openo_floating_ip_addr__" > /opt/config/openo_floating_ip_addr.txt
1855             echo "__dcae_c_floating_ip_addr__" > /opt/config/dcae_c_floating_ip_addr.txt
1856
1857             # Download and run install script
1858             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/dcae2_install.sh -o /opt/dcae2_install.sh
1859             cd /opt
1860             chmod +x dcae2_install.sh
1861             ./dcae2_install.sh > /tmp/dcae2_install.log 2>&1
1862
1863
1864   # MUSIC instantiation
1865   music_private_port:
1866     type: OS::Neutron::Port
1867     properties:
1868       network: { get_resource: oam_onap }
1869       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: music_ip_addr }}]
1870       security_groups:
1871       - { get_resource: onap_sg }
1872
1873   music_floating_ip:
1874     type: OS::Neutron::FloatingIP
1875     properties:
1876       floating_network_id: { get_param: public_net_id }
1877       port_id: { get_resource: music_private_port }
1878
1879   music_vm:
1880     type: OS::Nova::Server
1881     properties:
1882       image: { get_param: ubuntu_1404_image }
1883       flavor: { get_param: flavor_large }
1884       name:
1885         str_replace:
1886           template: base-music
1887           params:
1888             base: { get_param: vm_base_name }
1889       key_name: { get_resource: vm_key }
1890       networks:
1891         - port: { get_resource: music_private_port }
1892       user_data_format: RAW
1893       user_data:
1894         str_replace:
1895           params:
1896             __nexus_repo__: { get_param: nexus_repo }
1897             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1898             __nexus_username__: { get_param: nexus_username }
1899             __nexus_password__: { get_param: nexus_password }
1900             __artifacts_version__: { get_param: artifacts_version }
1901             __dns_ip_addr__: { get_param: dns_ip_addr }
1902             __docker_version__: { get_param: music_docker }
1903             __music_repo__: { get_param: music_repo }
1904             __gerrit_branch__: { get_param: music_branch }
1905             __cloud_env__: { get_param: cloud_env }
1906             __external_dns__: { get_param: external_dns }
1907           template: |
1908             #!/bin/bash
1909
1910             # Create configuration files
1911             mkdir -p /opt/config
1912             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1913             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1914             echo "__nexus_username__" > /opt/config/nexus_username.txt
1915             echo "__nexus_password__" > /opt/config/nexus_password.txt
1916             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1917             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1918             echo "__docker_version__" > /opt/config/docker_version.txt
1919             echo "__music_repo__" > /opt/config/remote_repo.txt
1920             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1921             echo "__cloud_env__" > /opt/config/cloud_env.txt
1922             echo "__external_dns__" > /opt/config/external_dns.txt
1923
1924             # Download and run install script
1925             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/music_install.sh -o /opt/music_install.sh
1926             cd /opt
1927             chmod +x music_install.sh
1928             ./music_install.sh
1929
1930
1931   # OOF instantiation
1932   oof_private_port:
1933     type: OS::Neutron::Port
1934     properties:
1935       network: { get_resource: oam_onap }
1936       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: oof_ip_addr }}]
1937       security_groups:
1938       - { get_resource: onap_sg }
1939
1940   oof_floating_ip:
1941     type: OS::Neutron::FloatingIP
1942     properties:
1943       floating_network_id: { get_param: public_net_id }
1944       port_id: { get_resource: oof_private_port }
1945
1946   oof_vm:
1947     type: OS::Nova::Server
1948     properties:
1949       image: { get_param: ubuntu_1404_image }
1950       flavor: { get_param: flavor_medium }
1951       name:
1952         str_replace:
1953           template: base-oof
1954           params:
1955             base: { get_param: vm_base_name }
1956       key_name: { get_resource: vm_key }
1957       networks:
1958         - port: { get_resource: oof_private_port }
1959       user_data_format: RAW
1960       user_data:
1961         str_replace:
1962           params:
1963             __nexus_repo__: { get_param: nexus_repo }
1964             __nexus_docker_repo__: { get_param: nexus_docker_repo }
1965             __nexus_username__: { get_param: nexus_username }
1966             __nexus_password__: { get_param: nexus_password }
1967             __artifacts_version__: { get_param: artifacts_version }
1968             __dns_ip_addr__: { get_param: dns_ip_addr }
1969             __docker_version__: { get_param: oof_docker }
1970             __oof_repo__: { get_param: oof_repo }
1971             __gerrit_branch__: { get_param: oof_branch }
1972             __cloud_env__: { get_param: cloud_env }
1973             __external_dns__: { get_param: external_dns }
1974           template: |
1975             #!/bin/bash
1976
1977             # Create configuration files
1978             mkdir -p /opt/config
1979             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
1980             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
1981             echo "__nexus_username__" > /opt/config/nexus_username.txt
1982             echo "__nexus_password__" > /opt/config/nexus_password.txt
1983             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
1984             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
1985             echo "__docker_version__" > /opt/config/docker_version.txt
1986             echo "__oof_repo__" > /opt/config/remote_repo.txt
1987             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
1988             echo "__cloud_env__" > /opt/config/cloud_env.txt
1989             echo "__external_dns__" > /opt/config/external_dns.txt
1990
1991             # Download and run install script
1992             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/oof_install.sh -o /opt/oof_install.sh
1993             cd /opt
1994             chmod +x oof_install.sh
1995             ./oof_install.sh
1996
1997
1998   # AAF instantiation
1999   aaf_private_port:
2000     type: OS::Neutron::Port
2001     properties:
2002       network: { get_resource: oam_onap }
2003       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: aaf_ip_addr }}]
2004       security_groups:
2005       - { get_resource: onap_sg }
2006
2007   aaf_floating_ip:
2008     type: OS::Neutron::FloatingIP
2009     properties:
2010       floating_network_id: { get_param: public_net_id }
2011       port_id: { get_resource: aaf_private_port }
2012
2013   aaf_vm:
2014     type: OS::Nova::Server
2015     properties:
2016       image: { get_param: ubuntu_1604_image }
2017       flavor: { get_param: flavor_medium }
2018       name:
2019         str_replace:
2020           template: base-aaf
2021           params:
2022             base: { get_param: vm_base_name }
2023       key_name: { get_resource: vm_key }
2024       networks:
2025         - port: { get_resource: aaf_private_port }
2026       user_data_format: RAW
2027       user_data:
2028         str_replace:
2029           params:
2030             __nexus_repo__: { get_param: nexus_repo }
2031             __nexus_docker_repo__: { get_param: nexus_docker_repo }
2032             __nexus_username__: { get_param: nexus_username }
2033             __nexus_password__: { get_param: nexus_password }
2034             __artifacts_version__: { get_param: artifacts_version }
2035             __dns_ip_addr__: { get_param: dns_ip_addr }
2036             __docker_version__: { get_param: aaf_docker }
2037             __cloud_env__: { get_param: cloud_env }
2038             __external_dns__: { get_param: external_dns }
2039             __aaf_repo__: { get_param: aaf_repo }
2040             __gerrit_branch__: { get_param: aaf_branch }
2041             __local_ip__: { get_param: aaf_ip_addr }
2042           template: |
2043             #!/bin/bash
2044
2045             # Create configuration files
2046             mkdir -p /opt/config
2047             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
2048             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
2049             echo "__nexus_username__" > /opt/config/nexus_username.txt
2050             echo "__nexus_password__" > /opt/config/nexus_password.txt
2051             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
2052             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
2053             echo "__docker_version__" > /opt/config/docker_version.txt
2054             echo "__cloud_env__" > /opt/config/cloud_env.txt
2055             echo "__external_dns__" > /opt/config/external_dns.txt
2056             echo "__aaf_repo__" > /opt/config/remote_repo.txt
2057             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
2058             echo "__local_ip__" > /opt/config/local_ip.txt
2059
2060             # Download and run install script
2061             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/aaf_install.sh -o /opt/aaf_install.sh
2062             cd /opt
2063             chmod +x aaf_install.sh
2064             ./aaf_install.sh
2065
2066   # NBI instantiation
2067   nbi_private_port:
2068     type: OS::Neutron::Port
2069     properties:
2070       network: { get_resource: oam_onap }
2071       fixed_ips: [{"subnet": { get_resource: oam_onap_subnet }, "ip_address": { get_param: nbi_ip_addr }}]
2072       security_groups:
2073       - { get_resource: onap_sg }
2074
2075   nbi_floating_ip:
2076     type: OS::Neutron::FloatingIP
2077     properties:
2078       floating_network_id: { get_param: public_net_id }
2079       port_id: { get_resource: nbi_private_port }
2080
2081   nbi_vm:
2082     type: OS::Nova::Server
2083     properties:
2084       image: { get_param: ubuntu_1604_image }
2085       flavor: { get_param: flavor_small }
2086       name:
2087         str_replace:
2088           template: base-nbi
2089           params:
2090             base: { get_param: vm_base_name }
2091       key_name: { get_resource: vm_key }
2092       networks:
2093         - port: { get_resource: nbi_private_port }
2094       user_data_format: RAW
2095       user_data:
2096         str_replace:
2097           params:
2098             __nexus_repo__: { get_param: nexus_repo }
2099             __nexus_docker_repo__: { get_param: nexus_docker_repo }
2100             __nexus_username__: { get_param: nexus_username }
2101             __nexus_password__: { get_param: nexus_password }
2102             __artifacts_version__: { get_param: artifacts_version }
2103             __dns_ip_addr__: { get_param: dns_ip_addr }
2104             __docker_version__: { get_param: nbi_docker }
2105             __nbi_repo__: { get_param: nbi_repo }
2106             __gerrit_branch__: { get_param: nbi_branch }
2107             __cloud_env__: { get_param: cloud_env }
2108             __external_dns__: { get_param: external_dns }
2109           template: |
2110             #!/bin/bash
2111
2112             # Create configuration files
2113             mkdir -p /opt/config
2114             echo "__nexus_repo__" > /opt/config/nexus_repo.txt
2115             echo "__nexus_docker_repo__" > /opt/config/nexus_docker_repo.txt
2116             echo "__nexus_username__" > /opt/config/nexus_username.txt
2117             echo "__nexus_password__" > /opt/config/nexus_password.txt
2118             echo "__artifacts_version__" > /opt/config/artifacts_version.txt
2119             echo "__dns_ip_addr__" > /opt/config/dns_ip_addr.txt
2120             echo "__docker_version__" > /opt/config/docker_version.txt
2121             echo "__nbi_repo__" > /opt/config/remote_repo.txt
2122             echo "__gerrit_branch__" > /opt/config/gerrit_branch.txt
2123             echo "__cloud_env__" > /opt/config/cloud_env.txt
2124             echo "__external_dns__" > /opt/config/external_dns.txt
2125
2126             # Download and run install script
2127             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/nbi_install.sh -o /opt/nbi_install.sh
2128             cd /opt
2129             chmod +x nbi_install.sh
2130             ./nbi_install.sh