List of collected OSWLs is extended. Images key is added

Change-Id: Ifabcfe441053865fc684943d6c7bb68add0eebe8
Implements: blueprint openstack-workload-statistic
This commit is contained in:
Artem Roma 2015-02-18 15:32:49 +02:00
parent 92ed03cac4
commit 79be1945d3
2 changed files with 3 additions and 2 deletions

View File

@ -44,5 +44,6 @@ OSWL_RESOURCE_TYPES = make_enum(
'security_group',
'keystone_user',
'flavor',
'cluster_stats'
'cluster_stats',
'image',
)

View File

@ -31,7 +31,7 @@ from sqlalchemy.dialects import postgresql
resource_type = sa.Enum('vm', 'tenant', 'volume', 'security_group',
'keystone_user', 'flavor', 'cluster_stats',
name='oswl_resource_type')
'image', name='oswl_resource_type')
def upgrade():