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