forked from cloudify-cosmo/tosca-vcloud-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.yaml
More file actions
272 lines (260 loc) · 10.3 KB
/
plugin.yaml
File metadata and controls
272 lines (260 loc) · 10.3 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
plugins:
vcloud:
executor: central_deployment_agent
source: https://github.com/cloudify-cosmo/tosca-vcloud-plugin/archive/1.3.zip
package_name: cloudify-vcloud-plugin
package_version: '1.3'
node_types:
cloudify.vcloud.nodes.Server:
derived_from: cloudify.nodes.Compute
properties:
use_external_resource:
default: false
resource_id:
default: ''
server:
default: {}
management_network:
default: ''
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: vcloud.vcloud_server_plugin.server.create
inputs: {}
configure:
implementation: vcloud.vcloud_server_plugin.server.configure
inputs: {}
start:
implementation: vcloud.vcloud_server_plugin.server.start
inputs: {}
stop:
implementation: vcloud.vcloud_server_plugin.server.stop
inputs: {}
delete:
implementation: vcloud.vcloud_server_plugin.server.delete
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_server_plugin.server.creation_validation
cloudify.vcloud.nodes.Network:
derived_from: cloudify.nodes.Network
properties:
network:
default: {}
use_external_resource:
default: false
resource_id:
default: ''
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: vcloud.vcloud_network_plugin.network.create
inputs: {}
delete:
implementation: vcloud.vcloud_network_plugin.network.delete
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.network.creation_validation
cloudify.vcloud.nodes.Port:
derived_from: cloudify.nodes.Port
properties:
port:
default: {}
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.port.creation_validation
cloudify.vcloud.nodes.FloatingIP:
derived_from: cloudify.nodes.VirtualIP
properties:
floatingip:
default: {}
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.floatingip.creation_validation
cloudify.vcloud.nodes.PublicNAT:
derived_from: cloudify.nodes.VirtualIP
properties:
use_external_resource:
default: false
nat:
default: {}
rules:
default: []
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.public_nat.creation_validation
cloudify.vcloud.nodes.SecurityGroup:
derived_from: cloudify.nodes.SecurityGroup
properties:
security_group:
default: {}
rules:
default: []
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.security_group.creation_validation
cloudify.vcloud.nodes.KeyPair:
derived_from: cloudify.nodes.Root
properties:
auto_generate:
default: false
private_key:
default: {}
public_key:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_network_plugin.keypair.creation_validation
cloudify.interfaces.lifecycle:
create:
implementation: vcloud.vcloud_network_plugin.keypair.create
inputs: {}
delete:
implementation: vcloud.vcloud_network_plugin.keypair.delete
inputs: {}
cloudify.vcloud.nodes.Volume:
derived_from: cloudify.nodes.Volume
properties:
device_name:
default: ''
volume:
default: {}
use_external_resource:
default: false
resource_id:
default: ''
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: vcloud.vcloud_storage_plugin.volume.create_volume
inputs: {}
delete:
implementation: vcloud.vcloud_storage_plugin.volume.delete_volume
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_storage_plugin.volume.creation_validation
cloudify.vcloud.nodes.VDC:
derived_from: cloudify.nodes.Root
properties:
name:
default: ''
use_external_resource:
default: false
resource_id:
default: ''
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.lifecycle:
create:
implementation: vcloud.vcloud_server_plugin.vdc.create
inputs: {}
delete:
implementation: vcloud.vcloud_server_plugin.vdc.delete
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: vcloud.vcloud_server_plugin.vdc.creation_validation
relationships:
cloudify.vcloud.server_connected_to_floating_ip:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
postconfigure:
implementation: vcloud.vcloud_network_plugin.floatingip.connect_floatingip
inputs: {}
unlink:
implementation: vcloud.vcloud_network_plugin.floatingip.disconnect_floatingip
inputs: {}
cloudify.vcloud.server_connected_to_network:
derived_from: cloudify.relationships.connected_to
cloudify.vcloud.port_connected_to_network:
derived_from: cloudify.relationships.connected_to
cloudify.vcloud.server_connected_to_port:
derived_from: cloudify.relationships.connected_to
cloudify.vcloud.server_connected_to_security_group:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
postconfigure:
implementation: vcloud.vcloud_network_plugin.security_group.create
inputs: {}
unlink:
implementation: vcloud.vcloud_network_plugin.security_group.delete
inputs: {}
cloudify.vcloud.net_connected_to_public_nat:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
preconfigure:
implementation: vcloud.vcloud_network_plugin.public_nat.net_connect_to_nat_preconfigure
inputs: {}
postconfigure:
implementation: vcloud.vcloud_network_plugin.public_nat.net_connect_to_nat
inputs: {}
unlink:
implementation: vcloud.vcloud_network_plugin.public_nat.net_disconnect_from_nat
inputs: {}
cloudify.vcloud.server_connected_to_public_nat:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
postconfigure:
implementation: vcloud.vcloud_network_plugin.public_nat.server_connect_to_nat
inputs: {}
unlink:
implementation: vcloud.vcloud_network_plugin.public_nat.server_disconnect_from_nat
inputs: {}
cloudify.vcloud.volume_attached_to_server:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
establish:
implementation: vcloud.vcloud_storage_plugin.volume.attach_volume
inputs: {}
unlink:
implementation: vcloud.vcloud_storage_plugin.volume.detach_volume
inputs: {}
cloudify.vcloud.server_connected_to_keypair:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
postconfigure:
implementation: vcloud.vcloud_network_plugin.keypair.server_connect_to_keypair
inputs: {}
unlink:
implementation: vcloud.vcloud_network_plugin.keypair.server_disconnect_from_keypair
inputs: {}
cloudify.vcloud.server_connected_to_vdc:
derived_from: cloudify.relationships.connected_to
cloudify.vcloud.delete_public_key_from_server:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
establish:
implementation: vcloud.vcloud_server_plugin.server.remove_keys
inputs: {}
workflows:
scoreinstall: vcloud.vcloud_plugin_common.workflows.install
scoreuninstall: vcloud.vcloud_plugin_common.workflows.uninstall