Created
July 11, 2013 17:42
-
-
Save ramielrowe/5977568 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
METADATA_MAPPING = { | |
'image_org.openstack__1__architecture': 'os_architecture', | |
'image_org.openstack__1__os_distro': 'os_distro', | |
'image_org.openstack__1__os_version': 'os_version', | |
'image_com.rackspace__1__options': 'rax_options', | |
} | |
METADATA_FIELDS = ["'%s'" % x for x in METADATA_MAPPING.keys()] | |
METADATA_FIELDS = ','.join(METADATA_FIELDS) | |
GET_INSTANCE_SYSTEM_METADATA = """ | |
SELECT * FROM instance_system_metadata | |
WHERE instance_uuid = '%s' AND | |
deleted = 0 AND `key` IN (%s); | |
""" | |
GET_INSTANCE_SYSTEM_METADATA %= ('%s', METADATA_FIELDS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment