Skip to content
Snippets Groups Projects
kolla_docker.py 14.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • Sam Yaple's avatar
    Sam Yaple 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 35 36 37 38 39 40 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
    #!/usr/bin/python
    
    # Copyright 2015 Sam Yaple
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    DOCUMENTATION = '''
    ---
    module: kolla_docker
    short_description: Module for controling Docker
    description:
         - A module targeting at controling Docker as used by Kolla.
    options:
      example:
        description:
          - example
        required: True
        type: bool
    author: Sam Yaple
    '''
    
    EXAMPLES = '''
    - hosts: kolla_docker
      tasks:
        - name: Start container
          kolla_docker:
              example: False
    '''
    
    import os
    
    import docker
    
    
    class DockerWorker(object):
    
        def __init__(self, module):
            self.module = module
            self.params = self.module.params
            self.changed = False
    
            # TLS not fully implemented
            # tls_config = self.generate_tls()
    
            options = {
                'version': self.params.get('api_version')
            }
    
            self.dc = docker.Client(**options)
    
        def generate_tls(self):
            tls = {'verify': self.params.get('tls_verify')}
            tls_cert = self.params.get('tls_cert'),
            tls_key = self.params.get('tls_key'),
            tls_cacert = self.params.get('tls_cacert')
    
            if tls['verify']:
                if tlscert:
                    self.check_file(tls['tls_cert'])
                    self.check_file(tls['tls_key'])
                    tls['client_cert'] = (tls_cert, tls_key)
                if tlscacert:
                    self.check_file(tls['tls_cacert'])
                    tls['verify'] = tls_cacert
    
            return docker.tls.TLSConfig(**tls)
    
        def check_file(self, path):
            if not os.path.isfile(path):
                self.module.fail_json(
                    failed=True,
                    msg='There is no file at "{}"'.format(path)
                )
            if not os.access(path, os.R_OK):
                self.module.fail_json(
                    failed=True,
                    msg='Permission denied for file at "{}"'.format(path)
                )
    
        def check_image(self):
            find_image = ':'.join(self.parse_image())
            for image in self.dc.images():
                for image_name in image['RepoTags']:
                    if image_name == find_image:
                        return image
    
        def check_volume(self):
            for vol in self.dc.volumes()['Volumes']:
                if vol['Name'] == self.params.get('name'):
                    return vol
    
        def check_container(self):
            find_name = '/{}'.format(self.params.get('name'))
            for cont in self.dc.containers(all=True):
                if find_name in cont['Names']:
                    return cont
    
        def check_container_differs(self):
            container = self.check_container()
            if not container:
                return True
            container_info = self.dc.inspect_container(self.params.get('name'))
    
            return (
                self.compare_image(container_info) or
                self.compare_privileged(container_info) or
                self.compare_pid_mode(container_info) or
                self.compare_volumes(container_info) or
                self.compare_volumes_from(container_info) or
                self.compare_environment(container_info)
            )
    
        def compare_pid_mode(self, container_info):
            new_pid_mode = self.params.get('pid_mode')
            current_pid_mode = container_info['HostConfig'].get('PidMode')
            if not current_pid_mode:
                current_pid_mode = None
    
            if new_pid_mode != current_pid_mode:
                return True
    
        def compare_privileged(self, container_info):
            new_privileged = self.params.get('privileged')
            current_privileged = container_info['HostConfig']['Privileged']
            if new_privileged != current_privileged:
                return True
    
        def compare_image(self, container_info):
            new_image = self.check_image()
            current_image = container_info['Image']
            if new_image['Id'] != current_image:
                return True
    
        def compare_volumes_from(self, container_info):
            new_vols_from = self.params.get('volumes_from')
            current_vols_from = container_info['HostConfig'].get('VolumesFrom')
            if not new_vols_from:
                new_vols_from = list()
            if not current_vols_from:
                current_vols_from = list()
    
            if set(current_vols_from).symmetric_difference(set(new_vols_from)):
                return True
    
        def compare_volumes(self, container_info):
            volumes, binds = self.generate_volumes()
            current_vols = container_info['Config'].get('Volumes')
            current_binds = container_info['HostConfig'].get('Binds')
            if not volumes:
                volumes = list()
            if not current_vols:
                current_vols = list()
            if not current_binds:
                current_binds = list()
    
            if set(volumes).symmetric_difference(set(current_vols)):
                return True
    
            new_binds = list()
            if binds:
                for k, v in binds.iteritems():
                    new_binds.append("{}:{}:{}".format(k, v['bind'], v['mode']))
    
            if set(new_binds).symmetric_difference(set(current_binds)):
                return True
    
        def compare_environment(self, container_info):
            if self.params.get('environment'):
                current_env = dict()
                for kv in container_info['Config'].get('Env', list()):
                    k, v = kv.split('=', 1)
                    current_env.update({k: v})
    
                for k, v in self.params.get('environment').iteritems():
                    if k not in current_env:
                        return True
                    if current_env[k] != v:
                        return True
    
        def parse_image(self):
            full_image = self.params.get('image')
    
            if '/' in full_image:
                registry, image = full_image.split('/', 1)
            else:
                image = full_image
    
            if ':' in image:
                return full_image.rsplit(':', 1)
            else:
                return full_image, 'latest'
    
        def pull_image(self):
            if self.params.get('auth_username'):
                self.dc.login(
                    username=self.params.get('auth_username'),
                    password=self.params.get('auth_password'),
                    registry=self.params.get('auth_registry'),
                    email=self.params.get('auth_email')
                )
    
            image, tag = self.parse_image()
    
            status = [
                json.loads(line.strip()) for line in self.dc.pull(
                    repository=image, tag=tag, stream=True
                )
            ]
    
            if "Downloaded newer image for" in status[-1].get('status'):
                self.changed = True
            elif "Image is up to date for" in status[-1].get('status'):
                # No new layer was pulled, no change
                pass
            else:
                self.module.fail_json(
                    msg="Invalid status returned from pull",
                    changed=True,
                    failed=True
                )
    
        def remove_container(self):
            if self.check_container():
                self.changed = True
                self.dc.remove_container(
                    container=self.params.get('name'),
                    force=True
                )
    
        def generate_volumes(self):
            volumes = self.params.get('volumes')
            if not volumes:
                return None, None
    
            vol_list = list()
            vol_dict = dict()
    
            for vol in volumes:
                if ':' not in vol:
                    vol_list.append(vol)
                    continue
    
                split_vol = vol.split(':')
    
                if (len(split_vol) == 2
                   and ('/' not in split_vol[0] or '/' in split_vol[1])):
                    split_vol.append('rw')
    
                vol_list.append(split_vol[1])
                vol_dict.update({
                    split_vol[0]: {
                        'bind': split_vol[1],
                        'mode': split_vol[2]
                    }
                })
    
            return vol_list, vol_dict
    
        def build_host_config(self, binds):
            options = {
                'network_mode': 'host',
                'pid_mode': self.params.get('pid_mode'),
                'privileged': self.params.get('privileged'),
                'volumes_from': self.params.get('volumes_from')
            }
    
            if self.params.get('restart_policy') in ['on-failure', 'always']:
                options['restart_policy'] = {
                    'Name': self.params.get('restart_policy'),
                    'MaximumRetryCount': self.params.get('restart_retries')
                }
    
            if binds:
                options['binds'] = binds
    
            return self.dc.create_host_config(**options)
    
        def build_container_options(self):
            volumes, binds = self.generate_volumes()
            return {
                'detach': self.params.get('detach'),
                'environment': self.params.get('environment'),
                'host_config': self.build_host_config(binds),
                'image': self.params.get('image'),
                'name': self.params.get('name'),
                'volumes': volumes,
                'tty': True
            }
    
        def create_container(self):
            self.changed = True
            options = self.build_container_options()
            self.dc.create_container(**options)
    
        def start_container(self):
            if not self.check_image():
                self.pull_image()
    
            container = self.check_container()
            if container and self.check_container_differs():
                self.remove_container()
                container = self.check_container()
    
            if not container:
                self.create_container()
                container = self.check_container()
    
            if not container['Status'].startswith('Up '):
                self.changed = True
                self.dc.start(container=self.params.get('name'))
    
            # We do not want to detach so we wait around for container to exit
            if not self.params.get('detach'):
                rc = self.dc.wait(self.params.get('name'))
                if rc != 0:
                    self.module.fail_json(
                        failed=True,
                        changed=True,
                        msg="Container exited with non-zero return code"
                    )
                if self.params.get('remove_on_exit'):
                    self.remove_container()
    
        def create_volume(self):
            if not self.check_volume():
                self.changed = True
                self.dc.create_volume(name=self.params.get('name'), driver='local')
    
        def remove_volume(self):
            if self.check_volume():
                self.changed = True
                try:
                    self.dc.remove_volume(name=self.params.get('name'))
                except docker.errors.APIError as e:
                    if e.response.status_code == 409:
                        self.module.fail_json(
                            failed=True,
                            msg="Volume named '{}' is currently in-use".format(
                                self.params.get('name')
                            )
                        )
                    raise
    
    
    def generate_module():
        argument_spec = dict(
            common_options=dict(required=False, type='dict', default=dict()),
            action=dict(requried=True, type='str', choices=['create_volume',
                                                            'pull_image',
                                                            'remove_container',
                                                            'remove_volume',
                                                            'start_container']),
            api_version=dict(required=False, type='str', default='auto'),
            auth_email=dict(required=False, type='str'),
            auth_password=dict(required=False, type='str'),
            auth_registry=dict(required=False, type='str'),
            auth_username=dict(required=False, type='str'),
            detach=dict(required=False, type='bool', default=True),
            name=dict(required=True, type='str'),
            environment=dict(required=False, type='dict'),
            image=dict(required=False, type='str'),
            insecure_registry=dict(required=False, type='bool', default=False),
            pid_mode=dict(required=False, type='str', choices=['host']),
            privileged=dict(required=False, type='bool', default=False),
            remove_on_exit=dict(required=False, type='bool', default=True),
            restart_policy=dict(required=False, type='str', choices=['no',
                                                                     'never',
                                                                     'on-failure',
                                                                     'always']),
            restart_retries=dict(required=False, type='int', default=10),
            tls_verify=dict(required=False, type='bool', default=False),
            tls_cert=dict(required=False, type='str'),
            tls_key=dict(required=False, type='str'),
            tls_cacert=dict(required=False, type='str'),
            volumes=dict(required=False, type='list'),
            volumes_from=dict(required=False, type='list')
        )
        required_together = [
            ['tls_cert', 'tls_key']
        ]
        return AnsibleModule(
            argument_spec=argument_spec,
            required_together=required_together
        )
    
    
    def generate_nested_module():
        module = generate_module()
    
        # We unnest the common dict and the update it with the other options
        new_args = module.params.get('common_options')
        new_args.update(module._load_params()[0])
        module.params = new_args
    
        # Override ARGS to ensure new args are used
        global MODULE_ARGS
        global MODULE_COMPLEX_ARGS
        MODULE_ARGS = ''
        MODULE_COMPLEX_ARGS = json.dumps(module.params)
    
        # Reprocess the args now that the common dict has been unnested
        return generate_module()
    
    
    def main():
        module = generate_nested_module()
    
        # TODO(SamYaple): Replace with required_if when Ansible 2.0 lands
        if (module.params.get('action') in ['pull_image', 'start_container']
           and not module.params.get('image')):
            self.module.fail_json(
                msg="missing required arguments: image",
                failed=True
            )
    
        try:
            dw = DockerWorker(module)
            getattr(dw, module.params.get('action'))()
            module.exit_json(changed=dw.changed)
        except Exception as e:
            module.exit_json(failed=True, changed=True, msg=repr(e))
    
    # import module snippets
    from ansible.module_utils.basic import *  # noqa
    if __name__ == '__main__':
        main()