blob: f0a0a8bd03b02562f34ab47bf76c14c864796cec [file] [log] [blame]
Gary Wu14a6b302018-05-01 15:59:28 -07001 ${K8S_VM_NAME}_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 ${K8S_VM_NAME}_floating_ip:
10 type: OS::Neutron::FloatingIP
11 properties:
12 floating_network_id: { get_param: public_net_id }
13 port_id: { get_resource: ${K8S_VM_NAME}_private_port }
14
15 ${K8S_VM_NAME}_vm:
16 type: OS::Nova::Server
17 properties:
18 name: ${K8S_VM_NAME}
19 image: { get_param: ubuntu_1604_image }
20 flavor: { get_param: k8s_vm_flavor }
gwu10db4622018-07-17 22:11:39 -070021 key_name: { get_param: key_name }
Gary Wu14a6b302018-05-01 15:59:28 -070022 networks:
23 - port: { get_resource: ${K8S_VM_NAME}_private_port }
24 user_data_format: RAW
25 user_data:
26 str_replace:
27 params:
Gary Wu14a6b302018-05-01 15:59:28 -070028 __docker_proxy__: { get_param: docker_proxy }
29 __apt_proxy__: { get_param: apt_proxy }
30 __rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] }
Gary Wuad513722018-07-26 13:08:47 -070031 __rancher_private_ip_addr__: { get_attr: [rancher_floating_ip, fixed_ip_address] }
Gary Wu14a6b302018-05-01 15:59:28 -070032 template:
33 get_file: k8s_vm_entrypoint.sh
34