Skip to content

Commit f36a4d5

Browse files
committed
Fixes after review
1 parent 9553cbc commit f36a4d5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
libvirt-python==4.5.0
2-
cloudify-plugins-common===3.4.2
2+
cloudify-common==4.5.0

plugin.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins:
77

88
data_types:
99

10-
pool_params:
10+
cloudify.datatypes.pool:
1111
properties:
1212
name:
1313
required: false
@@ -25,7 +25,7 @@ data_types:
2525
description: >
2626
Storage size in GiB
2727
28-
volume_params:
28+
cloudify.datatypes.volume:
2929
properties:
3030
name:
3131
required: false
@@ -60,7 +60,7 @@ data_types:
6060
description: >
6161
Volume allocation zero wipe
6262
63-
iso9660_params:
63+
cloudify.datatypes.iso9660:
6464
properties:
6565
volume:
6666
required: false
@@ -77,7 +77,7 @@ data_types:
7777
description: >
7878
File list with content. (Key:value)
7979
80-
network_params:
80+
cloudify.datatypes.network:
8181
properties:
8282
name:
8383
required: false
@@ -100,7 +100,7 @@ data_types:
100100
description: >
101101
Settings for network `ips`.
102102
103-
domain_params:
103+
cloudify.datatypes.domain:
104104
properties:
105105
name:
106106
required: false
@@ -171,7 +171,7 @@ node_types:
171171
libvirt_auth:
172172
default: 'qemu:///system'
173173
params:
174-
type: domain_params
174+
type: cloudify.datatypes.domain
175175
interfaces:
176176
cloudify.interfaces.lifecycle:
177177
create:
@@ -246,7 +246,7 @@ node_types:
246246
libvirt_auth:
247247
default: 'qemu:///system'
248248
params:
249-
type: network_params
249+
type: cloudify.datatypes.network
250250
interfaces:
251251
cloudify.interfaces.lifecycle:
252252
create:
@@ -291,7 +291,7 @@ node_types:
291291
libvirt_auth:
292292
default: 'qemu:///system'
293293
params:
294-
type: pool_params
294+
type: cloudify.datatypes.pool
295295
interfaces:
296296
cloudify.interfaces.lifecycle:
297297
create:
@@ -345,7 +345,7 @@ node_types:
345345
libvirt_auth:
346346
default: 'qemu:///system'
347347
params:
348-
type: volume_params
348+
type: cloudify.datatypes.volume
349349
interfaces:
350350
cloudify.interfaces.lifecycle:
351351
create:
@@ -396,7 +396,7 @@ node_types:
396396
libvirt_auth:
397397
default: 'qemu:///system'
398398
params:
399-
type: iso9660_params
399+
type: cloudify.datatypes.iso9660
400400
interfaces:
401401
cloudify.interfaces.lifecycle:
402402
create:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
]
3232
},
3333
install_requires=[
34-
'cloudify-plugins-common>=3.3',
35-
'libvirt-python',
34+
'cloudify-common>=4.5.0',
35+
'libvirt-python>=4.5.0',
3636
'pycdlib',
3737
"Jinja2>=2.7.2", # for template support
3838
],

0 commit comments

Comments
 (0)