blob: ff4d835506adada3d256ba559ad652162b9cae28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
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
|