glance_image 8.55 KB
Newer Older
bennojoy committed
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
#!/usr/bin/python
# -*- coding: utf-8 -*-

# (c) 2013, Benno Joy <benno@ansibleworks.com>
#
# This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this software.  If not, see <http://www.gnu.org/licenses/>.

DOCUMENTATION = '''
---
module: glance_image
short_description: Add/Delete images from glance
description:
   - Add or Remove images from the glance repository.
options:
   login_username:
     description:
        - login username to authenticate to keystone
     required: true
     default: admin
   login_password:
     description:
        - Password of login user
     required: true
Michael DeHaan committed
35
     default: 'yes'
bennojoy committed
36 37 38 39
   login_tenant_name:
     description:
        - The tenant name of the login user
     required: true
Michael DeHaan committed
40
     default: 'yes'
bennojoy committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
   auth_url:
     description:
        - The keystone url for authentication
     required: false
     default: 'http://127.0.0.1:35357/v2.0/'
   region_name:
     description:
        - Name of the region
     required: false
     default: None
   state:
     description:
        - Indicate desired state of the resource
     choices: ['present', 'absent']
     default: present
   name:
     description:
        - Name that has to be given to the image
     required: true
     default: None
   disk_format:
     description:
        - The format of the disk that is getting uploaded
     required: false
     default: qcow2
   container_format:
     description:
        - The format of the container
     required: false
     default: bare
   owner:
     description:
        - The owner of the image
     required: false
     default: None
   min_disk:
     description:
        - The minimum disk space required to deploy this image
     required: false
     default: None
   min_ram:
     description:
        - The minimum ram required to deploy this image
     required: false
     default: None
   is_public:
     description:
Michael DeHaan committed
88
        - Whether the image can be accessed publicly
bennojoy committed
89
     required: false
Michael DeHaan committed
90
     default: 'yes'
bennojoy committed
91 92
   copy_from:
     description:
93
        - A url from where the image can be downloaded, mutually exclusive with file parameter
bennojoy committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
     required: false
     default: None
   timeout:
     description:
        - The time to wait for the image process to complete in seconds
     required: false
     default: 180
   file:
     description:
        - The path to the file which has to be uploaded, mutually exclusive with copy_from
     required: false
     default: None
requirements: ["glanceclient", "keystoneclient"]

'''

110 111 112 113 114 115 116 117 118 119 120 121
EXAMPLES = '''
# Upload an image from an HTTP URL
- glance_image: login_username=admin
                login_password=passme
                login_tenant_name=admin
                name=cirros
                container_format=bare 
                disk_format=qcow2
                state=present
                copy_from=http:launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img
'''

bennojoy committed
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
import time
try:
    import glanceclient
    from keystoneclient.v2_0 import client as ksclient
except ImportError:
    print("failed=True msg='glanceclient and keystone client are required'")

def _get_ksclient(module, kwargs):
    try:
        client = ksclient.Client(username=kwargs.get('login_username'),
                                 password=kwargs.get('login_password'),
                                 tenant_name=kwargs.get('login_tenant_name'),
                                 auth_url=kwargs.get('auth_url'))
    except Exception as e:   
        module.fail_json(msg = "Error authenticating to the keystone: %s " % e.message)
    return client 
 

def _get_endpoint(module, client):
    try:
        endpoint = client.service_catalog.url_for(service_type='image', endpoint_type='publicURL')
    except Exception as e:
        module.fail_json(msg = "Error getting endpoint for glance: %s" % e.message)
    return endpoint

def _get_glance_client(module, kwargs):
    _ksclient = _get_ksclient(module, kwargs)
    token = _ksclient.auth_token
    endpoint =_get_endpoint(module, _ksclient)
    kwargs = {
            'token': token,
    }
    try:
155
        client = glanceclient.Client('1', endpoint, **kwargs)
bennojoy committed
156 157 158 159 160 161 162
    except Exception as e:
        module.fail_json(msg = "Error in connecting to glance: %s" %e.message)
    return client

def _glance_image_present(module, params, client):
    try:
        for image in client.images.list():
163 164 165
            if image.name == params['name']:
                return image.id 
        return None 
bennojoy committed
166
    except Exception as e:
167
        module.fail_json(msg = "Error in fetching image list: %s" %e.message)
bennojoy committed
168 169 170

def _glance_image_create(module, params, client):
    kwargs = {
171 172 173 174 175 176
                'name':             params.get('name'),
                'disk_format':      params.get('disk_format'),
                'container_format': params.get('container_format'),
                'owner':            params.get('owner'),
                'is_public':        params.get('is_public'),
                'copy_from':        params.get('copy_from'),
bennojoy committed
177
    }
178
    try:                
179
        timeout = float(params.get('timeout'))
180 181 182 183 184 185 186 187 188 189
        expire = time.time() + timeout
        image = client.images.create(**kwargs)
        if not params['copy_from']:
            image.update(data=open(params['file'], 'rb'))
        while time.time() < expire:
            image = client.images.get(image.id)
            if image.status == 'active':
                break
            time.sleep(5)
    except Exception as e:              
190
        module.fail_json(msg = "Error in creating image: %s" %e.message)                
bennojoy committed
191
    if image.status == 'active':
192
        module.exit_json(changed = True, result = image.status, id=image.id)
bennojoy committed
193
    else:
194
        module.fail_json(msg = " The module timed out, please check manually " + image.status) 
bennojoy committed
195 196

def _glance_delete_image(module, params, client):
197
    try:                
bennojoy committed
198
        for image in client.images.list():
199 200
            if image.name == params['name']:
                client.images.delete(image)
bennojoy committed
201
    except Exception as e:
202
        module.fail_json(msg = "Error in deleting image: %s" %e.message)
bennojoy committed
203
    module.exit_json(changed = True, result = "Deleted")
204
        
bennojoy committed
205 206 207
def main():
    
    module = AnsibleModule(
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
        argument_spec = dict(
            login_username    = dict(default='admin'),
            login_password    = dict(required=True),
            login_tenant_name = dict(required=True),
            auth_url          = dict(default='http://127.0.0.1:35357/v2.0/'),
            region_name       = dict(default=None),
            name              = dict(required=True),
            disk_format       = dict(default='qcow2', choices=['aki', 'vhd', 'vmdk', 'raw', 'qcow2', 'vdi', 'iso']),
            container_format  = dict(default='bare', choices=['aki', 'ari', 'bare', 'ovf']),
            owner             = dict(default=None),
            min_disk          = dict(default=None),
            min_ram           = dict(default=None),
            is_public         = dict(default=True),
            copy_from         = dict(default= None),
            timeout           = dict(default=180), 
            file              = dict(default=None), 
            state            = dict(default='present', choices=['absent', 'present'])
bennojoy committed
225
        ),
226
        mutually_exclusive = [['file','copy_from']],
bennojoy committed
227 228
    )
    if module.params['state'] == 'present':
229 230 231
        if not module.params['file'] and not module.params['copy_from']:
            module.fail_json(msg = "Either file or copy_from variable should be set to create the image")
        client = _get_glance_client(module, module.params)
232
        id = _glance_image_present(module, module.params, client)
233 234 235
        if not id:
            _glance_image_create(module, module.params, client)
        module.exit_json(changed = False, id = id, result = "success")
bennojoy committed
236 237

    if module.params['state'] == 'absent':
238
        client = _get_glance_client(module, module.params)
239
        id = _glance_image_present(module, module.params, client)
240 241 242 243
        if not id:      
            module.exit_json(changed = False, result = "Success")
        else:
            _glance_delete_image(module, module.params, client)
bennojoy committed
244 245 246 247 248

# this is magic, see lib/ansible/module.params['common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
main()