Put VID staging back to 3.2-STAGING-latest
[integration.git] / deployment / heat / onap-oom / parts / onap-oom-2.yaml
1   ${VM_TYPE}_${VM_NUM}_private_port:
2     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
9   ${VM_TYPE}_${VM_NUM}_floating_ip:
10     type: OS::Neutron::FloatingIP
11     properties:
12       floating_network_id: { get_param: public_net_id }
13       port_id: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
14
15   ${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
57   ${VM_TYPE}_${VM_NUM}_vm:
58     type: OS::Nova::Server
59     properties:
60       name:
61         list_join: ['-', [ { get_param: 'OS::stack_name' }, '${VM_TYPE}', '${VM_NUM}' ] ]
62       image: { get_param: ubuntu_1604_image }
63       flavor: { get_param: ${VM_TYPE}_vm_flavor }
64       key_name: { get_param: key_name }
65       networks:
66       - port: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
67       user_data_format: SOFTWARE_CONFIG
68       user_data: { get_resource: ${VM_TYPE}_${VM_NUM}_vm_config }
69