You need to sign in or sign up before continuing.
glance_image 8.56 KB
Newer Older
bennojoy committed
1 2 3
#!/usr/bin/python
# -*- coding: utf-8 -*-

Michael DeHaan committed
4
# (c) 2013, Benno Joy <benno@ansible.com>
bennojoy committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#
# 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
22
version_added: "1.2"
bennojoy committed
23 24 25 26 27 28 29 30 31 32 33 34 35
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
36
     default: 'yes'
bennojoy committed
37 38 39 40
   login_tenant_name:
     description:
        - The tenant name of the login user
     required: true
Michael DeHaan committed
41
     default: 'yes'
bennojoy committed
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 88
   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
89
        - Whether the image can be accessed publicly
bennojoy committed
90
     required: false
Michael DeHaan committed
91
     default: 'yes'
bennojoy committed
92 93
   copy_from:
     description:
94
        - A url from where the image can be downloaded, mutually exclusive with file parameter
bennojoy committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
     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"]

'''

111 112 113 114 115 116 117 118 119 120 121 122
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
123 124 125 126 127 128 129 130 131 132 133 134 135
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'))
136
    except Exception, e:   
bennojoy committed
137 138 139 140 141 142 143
        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')
144
    except Exception, e:
bennojoy committed
145 146 147 148 149 150 151 152 153 154 155
        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:
156
        client = glanceclient.Client('1', endpoint, **kwargs)
157
    except Exception, e:
bennojoy committed
158 159 160 161 162 163
        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():
164 165 166
            if image.name == params['name']:
                return image.id 
        return None 
167
    except Exception, e:
168
        module.fail_json(msg = "Error in fetching image list: %s" %e.message)
bennojoy committed
169 170 171

def _glance_image_create(module, params, client):
    kwargs = {
172 173 174 175 176 177
                '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
178
    }
179
    try:                
180
        timeout = float(params.get('timeout'))
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)
190
    except Exception, e:              
191
        module.fail_json(msg = "Error in creating image: %s" %e.message)                
bennojoy committed
192
    if image.status == 'active':
193
        module.exit_json(changed = True, result = image.status, id=image.id)
bennojoy committed
194
    else:
195
        module.fail_json(msg = " The module timed out, please check manually " + image.status) 
bennojoy committed
196 197

def _glance_delete_image(module, params, client):
198
    try:                
bennojoy committed
199
        for image in client.images.list():
200 201
            if image.name == params['name']:
                client.images.delete(image)
202
    except Exception, e:
203
        module.fail_json(msg = "Error in deleting image: %s" %e.message)
bennojoy committed
204
    module.exit_json(changed = True, result = "Deleted")
205
        
bennojoy committed
206 207 208
def main():
    
    module = AnsibleModule(
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
        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
226
        ),
227
        mutually_exclusive = [['file','copy_from']],
bennojoy committed
228 229
    )
    if module.params['state'] == 'present':
230 231 232
        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)
233
        id = _glance_image_present(module, module.params, client)
234 235 236
        if not id:
            _glance_image_create(module, module.params, client)
        module.exit_json(changed = False, id = id, result = "success")
bennojoy committed
237 238

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

# this is magic, see lib/ansible/module.params['common.py
247
from ansible.module_utils.basic import *
bennojoy committed
248 249
main()