forked from openstack/glance
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added min_disk and min_ram properties to images
Fixes LP Bug#849368 Change-Id: I3e17370537144d117d99af5fa5a21df830b7c7ed
- Loading branch information
Showing
10 changed files
with
335 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Adam Gandelman <[email protected]> | ||
Alex Meade <[email protected]> | ||
Andrey Brindeyev <[email protected]> | ||
Brian Lamar <[email protected]> | ||
Brian Waldon <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
glance/registry/db/migrate_repo/versions/009_add_mindisk_and_minram.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# vim: tabstop=4 shiftwidth=4 softtabstop=4 | ||
|
||
# Copyright 2011 OpenStack LLC. | ||
# All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
from migrate.changeset import * | ||
from sqlalchemy import * | ||
from sqlalchemy.sql import and_, not_ | ||
|
||
from glance.registry.db.migrate_repo.schema import ( | ||
Boolean, DateTime, Integer, String, Text, from_migration_import) | ||
|
||
|
||
def get_images_table(meta): | ||
""" | ||
Returns the Table object for the images table that | ||
corresponds to the images table definition of this version. | ||
""" | ||
images = Table('images', meta, | ||
Column('id', Integer(), primary_key=True, nullable=False), | ||
Column('name', String(255)), | ||
Column('disk_format', String(20)), | ||
Column('container_format', String(20)), | ||
Column('size', Integer()), | ||
Column('status', String(30), nullable=False), | ||
Column('is_public', Boolean(), nullable=False, default=False, | ||
index=True), | ||
Column('location', Text()), | ||
Column('created_at', DateTime(), nullable=False), | ||
Column('updated_at', DateTime()), | ||
Column('deleted_at', DateTime()), | ||
Column('deleted', Boolean(), nullable=False, default=False, | ||
index=True), | ||
Column('checksum', String(32)), | ||
Column('min_disk', Integer(), default=0), | ||
Column('min_ram', Integer(), default=0), | ||
mysql_engine='InnoDB', | ||
useexisting=True) | ||
|
||
return images | ||
|
||
|
||
def get_image_properties_table(meta): | ||
""" | ||
No changes to the image properties table from 008... | ||
""" | ||
(define_image_properties_table,) = from_migration_import( | ||
'008_add_image_members_table', ['define_image_properties_table']) | ||
|
||
image_properties = define_image_properties_table(meta) | ||
return image_properties | ||
|
||
|
||
def upgrade(migrate_engine): | ||
meta = MetaData() | ||
meta.bind = migrate_engine | ||
|
||
images = get_images_table(meta) | ||
|
||
min_disk = Column('min_disk', Integer(), default=0) | ||
min_disk.create(images) | ||
|
||
min_ram = Column('min_ram', Integer(), default=0) | ||
min_ram.create(images) | ||
|
||
|
||
def downgrade(migrate_engine): | ||
meta = MetaData() | ||
meta.bind = migrate_engine | ||
|
||
images = get_images_table(meta) | ||
|
||
images.columns['min_disk'].drop() | ||
images.columns['min_ram'].drop() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.