This repository was archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathplugin.yaml
More file actions
212 lines (201 loc) · 7.6 KB
/
plugin.yaml
File metadata and controls
212 lines (201 loc) · 7.6 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
plugins:
vcloud:
executor: central_deployment_agent
source: https://github.com/vmware/tosca-vcloud-plugin/archive/master.zip
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.server_plugin.server.create
inputs: {}
start:
implementation: vcloud.server_plugin.server.start
inputs: {}
stop:
implementation: vcloud.server_plugin.server.stop
inputs: {}
delete:
implementation: vcloud.server_plugin.server.delete
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: 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.network_plugin.network.create
inputs: {}
delete:
implementation: vcloud.network_plugin.network.delete
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: 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.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.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.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.network_plugin.security_group.creation_validation
cloudify.vcloud.nodes.KeyPair:
derived_from: cloudify.nodes.Root
properties:
private_key_path:
default: ''
public_key:
default: {}
vcloud_config:
default: {}
interfaces:
cloudify.interfaces.validation:
creation:
implementation: vcloud.network_plugin.keypair.creation_validation
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.server_plugin.volume.create_volume
inputs: {}
delete:
implementation: vcloud.server_plugin.volume.delete_volume
inputs: {}
cloudify.interfaces.validation:
creation:
implementation: vcloud.server_plugin.volume.creation_validation
relationships:
cloudify.vcloud.server_connected_to_floating_ip:
derived_from: cloudify.relationships.connected_to
target_interfaces:
cloudify.interfaces.relationship_lifecycle:
establish:
implementation: vcloud.network_plugin.floatingip.connect_floatingip
inputs: {}
unlink:
implementation: 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:
establish:
implementation: vcloud.network_plugin.security_group.create
inputs: {}
unlink:
implementation: 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:
establish:
implementation: vcloud.network_plugin.public_nat.net_connect_to_nat
inputs: {}
unlink:
implementation: 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:
establish:
implementation: vcloud.network_plugin.public_nat.server_connect_to_nat
inputs: {}
unlink:
implementation: 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.server_plugin.volume.attach_volume
inputs: {}
unlink:
implementation: vcloud.server_plugin.volume.detach_volume
inputs: {}