diff --git a/sahara/resources/volume.heat b/sahara/resources/volume.heat index 3cebf5942c..a214549ce5 100644 --- a/sahara/resources/volume.heat +++ b/sahara/resources/volume.heat @@ -1,6 +1,7 @@ "%(volume_name)s" : { "Type" : "OS::Cinder::Volume", "Properties" : { + "name" : "%(volume_name)s", "size" : "%(volumes_size)s" } }, diff --git a/sahara/tests/unit/resources/test_serialize_resources_use_neutron.heat b/sahara/tests/unit/resources/test_serialize_resources_use_neutron.heat index 7ccf6ab13f..cf46dc5198 100644 --- a/sahara/tests/unit/resources/test_serialize_resources_use_neutron.heat +++ b/sahara/tests/unit/resources/test_serialize_resources_use_neutron.heat @@ -32,6 +32,7 @@ "cluster-worker-001-volume-0" : { "Type" : "OS::Cinder::Volume", "Properties" : { + "name" : "cluster-worker-001-volume-0", "size" : "10" } }, @@ -46,6 +47,7 @@ "cluster-worker-001-volume-1" : { "Type" : "OS::Cinder::Volume", "Properties" : { + "name" : "cluster-worker-001-volume-1", "size" : "10" } },