d8a74de787
When creating a docker client using docker library, version 1.26.0 of docker api is used by default, however the version of docker included in CentOS 7 is currently 1.24.0. Using version='auto', the client detects the api version in the server and uses it. This change sets version to 'auto' so that is automatically detected as kolla [1] and others do. Closes-Bug: #1702765 [1] https://github.com/openstack/kolla/blob/master/kolla/image/build.py#L135 Change-Id: I36d5316ac5244c227f6e9913a58d4fde1c2b1518
123 lines
4.3 KiB
Python
123 lines
4.3 KiB
Python
# Copyright 2015 Red Hat, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
|
|
import abc
|
|
import logging
|
|
import netifaces
|
|
import six
|
|
|
|
try:
|
|
from docker import APIClient as Client
|
|
except ImportError:
|
|
from docker import Client
|
|
from tripleo_common.image.base import BaseImageManager
|
|
from tripleo_common.image.exception import ImageUploaderException
|
|
|
|
|
|
class ImageUploadManager(BaseImageManager):
|
|
"""Manage the uploading of image files
|
|
|
|
Manage the uploading of images from a config file specified in YAML
|
|
syntax. Multiple config files can be specified. They will be merged.
|
|
"""
|
|
logger = logging.getLogger(__name__ + '.ImageUploadManager')
|
|
|
|
def __init__(self, config_files, verbose=False, debug=False):
|
|
super(ImageUploadManager, self).__init__(config_files)
|
|
|
|
def upload(self):
|
|
"""Start the upload process"""
|
|
|
|
self.logger.info('Using config files: %s' % self.config_files)
|
|
|
|
uploads = self.load_config_files(self.UPLOADS) or []
|
|
container_images = self.load_config_files(self.CONTAINER_IMAGES) or []
|
|
upload_images = uploads + container_images
|
|
default_push_destination = self.get_ctrl_plane_ip() + ':8787'
|
|
|
|
for item in upload_images:
|
|
image_name = item.get('imagename')
|
|
uploader = item.get('uploader', 'docker')
|
|
pull_source = item.get('pull_source', 'docker.io')
|
|
push_destination = item.get('push_destination',
|
|
default_push_destination)
|
|
|
|
# This updates the parsed upload_images dict with real values
|
|
item['push_destination'] = push_destination
|
|
|
|
self.logger.info('imagename: %s' % image_name)
|
|
|
|
uploader = ImageUploader.get_uploader(uploader)
|
|
uploader.upload_image(image_name, pull_source, push_destination)
|
|
|
|
return upload_images # simply to make test validation easier
|
|
|
|
def get_ctrl_plane_ip(self):
|
|
addr = 'localhost'
|
|
if 'br-ctlplane' in netifaces.interfaces():
|
|
addrs = netifaces.ifaddresses('br-ctlplane')
|
|
if netifaces.AF_INET in addrs and addrs[netifaces.AF_INET]:
|
|
addr = addrs[netifaces.AF_INET][0].get('addr', 'localhost')
|
|
return addr
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
class ImageUploader(object):
|
|
"""Base representation of an image uploading method"""
|
|
|
|
@staticmethod
|
|
def get_uploader(uploader):
|
|
if uploader == 'docker':
|
|
return DockerImageUploader()
|
|
raise ImageUploaderException('Unknown image uploader type')
|
|
|
|
@abc.abstractmethod
|
|
def upload_image(self, image_name, pull_source, push_destination):
|
|
"""Upload a disk image"""
|
|
pass
|
|
|
|
|
|
class DockerImageUploader(ImageUploader):
|
|
"""Upload images using docker push"""
|
|
|
|
logger = logging.getLogger(__name__ + '.DockerImageUploader')
|
|
|
|
def upload_image(self, image_name, pull_source, push_destination):
|
|
dockerc = Client(base_url='unix://var/run/docker.sock', version='auto')
|
|
if ':' in image_name:
|
|
image = image_name.rpartition(':')[0]
|
|
tag = image_name.rpartition(':')[2]
|
|
else:
|
|
image = image_name
|
|
tag = 'latest'
|
|
repo = pull_source + '/' + image
|
|
|
|
response = [line for line in dockerc.pull(repo,
|
|
tag=tag, stream=True)]
|
|
self.logger.debug(response)
|
|
|
|
full_image = repo + ':' + tag
|
|
new_repo = push_destination + '/' + image
|
|
response = dockerc.tag(image=full_image, repository=new_repo,
|
|
tag=tag, force=True)
|
|
self.logger.debug(response)
|
|
|
|
response = [line for line in dockerc.push(new_repo,
|
|
tag=tag, stream=True)]
|
|
self.logger.debug(response)
|
|
|
|
self.logger.info('Completed upload for docker image %s' % image_name)
|