-
Notifications
You must be signed in to change notification settings - Fork 1
/
heat_mappings.json
105 lines (105 loc) · 3.87 KB
/
heat_mappings.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"imports": [
"plugin.yaml"
],
"blueprint": {
"name": "$stack_name",
"nodes":
{
"cloudify.heat.heat_stack": {
"name": "heat_stack",
"type": "cloudify.heat.heat_stack",
"properties": {
"stack_name": "$stack_name",
"cloudify_management_network_name": "cloudify-admin-network",
"template_url": "http://s3.amazonaws.com/yoramw/wordpress.yaml"
}
},
"OS::Neutron::Net": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"network": {
"Neutron_config": "$$$"
}
},
"relationships": {
"target": "heat_stack",
"type": "cloudify.relationships.contained_in"
}
},
"OS::Neutron::Subnet": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"subnet": {
"Neutron_config": "$$$"
}
},
"relationships": {
"target": "$network:name",
"type": "cloudify.relationships.contained_in"
}
},
"OS::Neutron::FloatingIP": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"floatingip": {
"Neutron_config": "$$$"
}
},
"relationships": {
"target": "heat_stack",
"type": "cloudify.relationships.contained_in"
}
},
"OS::Neutron::Port": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"port": {
"Neutron_config": "$$$"
}
},
"relationships": {
"target": "heat_stack",
"type": "cloudify.relationships.contained_in"
}
},
"OS::Neutron::SecurityGroup": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"security_group": {
"Neutron_config": "$$$"
}
},
"relationships": {
"target": "heat_stack",
"type": "cloudify.relationships.contained_in"
}
},
"OS::Nova::Server": {
"name": "$resource_name",
"type": "$resource_type",
"properties": {
"cloudify_agent": {
"user": "ubuntu"
},
"cloudify_management_network_name":"my_app_network",
"server": {
"flavor_id": "$flavor:id",
"image_id": "$image:id",
"openstack_server_id": "$id",
"Nova_config": "$$$"
}
},
"relationships": {
"target": "$network:name",
"type": "cloudify.relationships.connected_to"
}
}
}
}
}