blob: 34fc0d78fa7ad491fcba94085f23d2d6e171a602 [file] [log] [blame]
Gary Wu3fd6c2a2018-10-28 21:44:00 -07001 ${VM_TYPE}_${VM_NUM}_private_port:
Gary Wu14a6b302018-05-01 15:59:28 -07002 type: OS::Neutron::Port
3 properties:
4 network: { get_resource: oam_network }
5 fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
6 security_groups:
7 - { get_resource: onap_sg }
8
Gary Wu3fd6c2a2018-10-28 21:44:00 -07009 ${VM_TYPE}_${VM_NUM}_floating_ip:
Gary Wu14a6b302018-05-01 15:59:28 -070010 type: OS::Neutron::FloatingIP
11 properties:
12 floating_network_id: { get_param: public_net_id }
Gary Wu3fd6c2a2018-10-28 21:44:00 -070013 port_id: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
Gary Wu14a6b302018-05-01 15:59:28 -070014
Gary Wub7189982018-11-14 10:01:37 -080015 ${VM_TYPE}_${VM_NUM}_vm_scripts:
16 type: OS::Heat::CloudConfig
17 properties:
18 cloud_config:
19 power_state:
20 mode: reboot
21 runcmd:
22 - [ /opt/k8s_vm_install.sh ]
23 write_files:
24 - path: /opt/k8s_vm_install.sh
25 permissions: '0755'
26 content:
27 str_replace:
28 params:
29 __docker_proxy__: { get_param: docker_proxy }
30 __apt_proxy__: { get_param: apt_proxy }
31 __docker_version__: { get_param: docker_version }
32 __rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] }
33 __rancher_private_ip_addr__: { get_attr: [rancher_floating_ip, fixed_ip_address] }
34 __host_private_ip_addr__: { get_attr: [${VM_TYPE}_${VM_NUM}_floating_ip, fixed_ip_address] }
35 template:
36 get_file: k8s_vm_install.sh
37 - path: /opt/k8s_vm_init.sh
38 permissions: '0755'
39 content:
40 str_replace:
41 params:
42 __host_private_ip_addr__: { get_attr: [${VM_TYPE}_${VM_NUM}_floating_ip, fixed_ip_address] }
43 __host_label__: '$HOST_LABEL'
44 template:
45 get_file: k8s_vm_init.sh
46 - path: /etc/init.d/k8s_vm_init_serv
47 permissions: '0755'
48 content:
49 get_file: k8s_vm_init_serv.sh
50
51 ${VM_TYPE}_${VM_NUM}_vm_config:
52 type: OS::Heat::MultipartMime
53 properties:
54 parts:
55 - config: { get_resource: ${VM_TYPE}_${VM_NUM}_vm_scripts }
56
Gary Wu3fd6c2a2018-10-28 21:44:00 -070057 ${VM_TYPE}_${VM_NUM}_vm:
Gary Wu14a6b302018-05-01 15:59:28 -070058 type: OS::Nova::Server
59 properties:
eHanan97b7a9c2018-09-05 14:09:19 +010060 name:
Gary Wu3fd6c2a2018-10-28 21:44:00 -070061 list_join: ['-', [ { get_param: 'OS::stack_name' }, '${VM_TYPE}', '${VM_NUM}' ] ]
Gary Wu14a6b302018-05-01 15:59:28 -070062 image: { get_param: ubuntu_1604_image }
Gary Wu3fd6c2a2018-10-28 21:44:00 -070063 flavor: { get_param: ${VM_TYPE}_vm_flavor }
gwu10db4622018-07-17 22:11:39 -070064 key_name: { get_param: key_name }
Gary Wu14a6b302018-05-01 15:59:28 -070065 networks:
Gary Wu3fd6c2a2018-10-28 21:44:00 -070066 - port: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
Gary Wub7189982018-11-14 10:01:37 -080067 user_data_format: SOFTWARE_CONFIG
68 user_data: { get_resource: ${VM_TYPE}_${VM_NUM}_vm_config }
Gary Wu14a6b302018-05-01 15:59:28 -070069