heat_template_version: 2015-10-15 description: ONAP on Kubernetes using OOM parameters: public_net_id: type: string description: The ID of the Public network for floating IP address allocation docker_proxy: type: string apt_proxy: type: string resources: rancher_vm: type: OS::Nova::Server properties: name: rancher image: xenial flavor: m1.medium key_name: onap_key networks: - network: { get_param: public_net_id } user_data_format: RAW user_data: str_replace: params: __docker_proxy__: { get_param: docker_proxy } __apt_proxy__: { get_param: apt_proxy } template: get_file: rancher_vm_entrypoint.sh k8s_vm: type: OS::Nova::Server properties: name: k8s image: xenial flavor: m1.xxlarge key_name: onap_key networks: - network: { get_param: public_net_id } user_data_format: RAW user_data: str_replace: params: __docker_proxy__: { get_param: docker_proxy } __apt_proxy__: { get_param: apt_proxy } __rancher_ip_addr__: { get_attr: [rancher_vm, first_address] } template: get_file: k8s_vm_entrypoint.sh