summaryrefslogtreecommitdiffstats
path: root/deploy/post/glance.py
blob: 79831ed03296606fda1ce04d2f21faa66899bbad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
##############################################################################
# Copyright (c) 2017 ZTE Coreporation and others.
# feng.xiaowei@zte.com.cn
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import os

import glanceclient

from deploy.common import query
import keystoneauth


class Glance(keystoneauth.ClientBase):
    def __init__(self, version='2', openrc=None):
        super(Glance, self).__init__(glanceclient.Client, version, openrc)
        self.controller = self.client.images

    def create(self, name, path,
               disk_format="qcow2",
               container_format="bare",
               visibility="public"):
        if not os.path.isfile(path):
            raise Exception('Error: file {} not exist'.format(path))
        image = self.controller.create(name=name,
                                       visibility=visibility,
                                       disk_format=disk_format,
                                       container_format=container_format)
        id = image.id
        with open(path) as data:
            self.controller.upload(id, data)
        return id

    def get_by_name(self, name):
        return query.find(lambda image: image.name == name, self.list())

    def list(self):
        return self.controller.list()