blob: 463635b8a4b8f1dd9f88fe10ed1ffa65403f3d11 [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 }
Gary Wu7a04b3d2018-08-15 12:31:46 -070030 __docker_version__: { get_param: docker_version }
Gary Wu14a6b302018-05-01 15:59:28 -070031 __rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] }
Gary Wuad513722018-07-26 13:08:47 -070032 __rancher_private_ip_addr__: { get_attr: [rancher_floating_ip, fixed_ip_address] }
Gary Wu14a6b302018-05-01 15:59:28 -070033 template:
34 get_file: k8s_vm_entrypoint.sh
35