私はDevStack -Grizzly インストールを使用しています。Openstack python APIを使用して、メタデータを含む画像を追加します [コードを参照] 。
私は glance.images.createを使用し、プロパティ引数によってメタデータを提供します。残念ながら、作成されたイメージにはメタデータ (プロパティ) がありません。image.getはNONEを出力します。
import keystoneclient.v2_0.client as ksclient
import glanceclient
keystone = ksclient.Client(auth_url=credentials['auth-url'], username=credentials['username'],
password=credentials['password'], tenant_name=credentials['tenant'])
glance_endpoint = keystone.service_catalog.url_for(service_type='image',
endpoint_type='publicURL')
glance = glanceclient.Client('1',glance_endpoint, token=keystone.auth_token)
image_name="test-cirros"
image_file="cirros.img"
with open( image_file ) as fimage:
image = glance.images.create(name=image_name, is_public=True, disk_format="qcow2", container_format="bare", data=fimage, properties = {"aaaa": "13", "'bbbbbb": "12"} )
print image.get() // prints NONE
画像メタデータを設定する他の方法はありますか?