Skip to content
Snippets Groups Projects
config.py 14.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • # 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 itertools
    
    from oslo_config import cfg
    from oslo_config import types
    
    
    from kolla.version import version_info as version
    
    BASE_OS_DISTRO = ['centos', 'rhel', 'ubuntu', 'oraclelinux', 'debian']
    
    DISTRO_RELEASE = {
        'centos': '7',
    
        'oraclelinux': '7',
        'debian': '8',
    
    Jeffrey Zhang's avatar
    Jeffrey Zhang committed
        'ubuntu': '16.04',
    
    DELOREAN = ("http://buildlogs.centos.org/centos/7/cloud/x86_64/"
                "rdo-trunk-master-tested/delorean.repo")
    # TODO(pbourke): update to buildlogs.centos.org once this moves
    DELOREAN_DEPS = "http://trunk.rdoproject.org/centos7/delorean-deps.repo"
    
    INSTALL_TYPE_CHOICES = ['binary', 'source', 'rdo', 'rhos']
    
    _PROFILE_OPTS = [
        cfg.ListOpt('infra',
    
                    default=['ceph', 'cron', 'elasticsearch', 'etcd', 'haproxy',
                             'heka', 'keepalived', 'kibana', 'kolla-toolbox',
                             'mariadb', 'memcached', 'mongodb', 'openvswitch',
                             'rabbitmq', 'tgtd'],
    
                    help='Infra images'),
        cfg.ListOpt('main',
                    default=['cinder', 'ceilometer', 'glance', 'heat',
    
                             'horizon', 'iscsi', 'keystone', 'neutron', 'nova',
    
                             'swift'],
                    help='Main images'),
        cfg.ListOpt('aux',
    
                    default=['aodh', 'cloudkitty', 'congress', 'designate',
                             'gnocchi', 'influxdb', 'ironic', 'kuryr', 'magnum',
                             'manila', 'mistral', 'murano', 'rally', 'sahara',
    
                             'searchlight', 'senlin', 'telegraf', 'trove',
                             'zaqar'],
    
                    help='Aux Images'),
        cfg.ListOpt('default',
    
                    default=['cron', 'kolla-toolbox', 'glance', 'haproxy',
    
                             'heat', 'horizon', 'keepalived', 'keystone',
                             'memcached', 'mariadb', 'neutron', 'nova',
    
    Éric Lemoine's avatar
    Éric Lemoine committed
                             'openvswitch', 'rabbitmq', 'heka'],
    
                    help='Default images'),
        cfg.ListOpt('gate',
    
                    default=['cron', 'glance', 'haproxy', 'keepalived', 'keystone',
    
    SamYaple's avatar
    SamYaple committed
                             'kolla-toolbox', 'mariadb', 'memcached', 'neutron',
    
    Éric Lemoine's avatar
    Éric Lemoine committed
                             'nova', 'openvswitch', 'rabbitmq', 'heka'],
    
                    help='Gate images')
    
    ]
    
    _CLI_OPTS = [
        cfg.StrOpt('base', short='b', default='centos',
    
                   help='The distro type of the base image'),
    
        cfg.StrOpt('base-tag', default='latest',
    
                   help='The base distro image tag'),
    
        cfg.StrOpt('base-image', default=None,
                   help='The base image name. Default is the same with base'),
    
        cfg.BoolOpt('debug', short='d', default=False,
                    help='Turn on debugging log level'),
    
        cfg.DictOpt('build-args',
                    help='Set docker build time variables'),
    
        cfg.StrOpt('include-header', short='i',
    
                   deprecated_for_removal=True,
                   deprecated_reason=('Use a header block within a template'
                                      ' overrides file instead'),
    
                   help=('Path to custom file to be added at '
                         'beginning of base Dockerfile')),
        cfg.StrOpt('include-footer', short='I',
    
                   deprecated_for_removal=True,
                   deprecated_reason=('Use a footer block within a template'
                                      ' overrides file instead'),
    
                   help=('Path to custom file to be added at '
                         'end of Dockerfiles for final images')),
        cfg.BoolOpt('keep', default=False,
                    help='Keep failed intermediate containers'),
    
        cfg.BoolOpt('list-dependencies', short='l',
                    help='Show image dependencies (filtering supported)'),
        cfg.BoolOpt('list-images',
                    help='Show all available images'),
    
        cfg.StrOpt('namespace', short='n', default='kolla',
    
                   help='The Docker namespace name'),
        cfg.BoolOpt('cache', default=True,
                    help='Use the Docker cache when building',
                    ),
        cfg.MultiOpt('profile', types.String(), short='p',
                     help=('Build a pre-defined set of images, see [profiles]'
                           ' section in config. The default profiles are:'
                           ' {}'.format(', '.join(
                               [opt.name for opt in _PROFILE_OPTS])
                           ))),
        cfg.BoolOpt('push', default=False,
                    help='Push images after building'),
        cfg.IntOpt('push-threads', default=1, min=1,
                   help=('The number of threads to user while pushing'
                         ' Images. Note: Docker can not handle threading'
                         ' push properly.')),
        cfg.IntOpt('retries', short='r', default=3, min=0,
                   help='The number of times to retry while building'),
        cfg.MultiOpt('regex', types.String(), positional=True,
                     help=('Build only images matching regex and its'
                           ' dependencies')),
    
        cfg.StrOpt('registry',
    
                   help=('The docker registry host. The default registry host'
                         ' is Docker Hub')),
    
        cfg.StrOpt('save-dependency',
                   help=('Path to the file to store the docker image'
                         ' dependency in Graphviz dot format')),
    
        cfg.StrOpt('type', short='t', default='binary',
                   choices=INSTALL_TYPE_CHOICES,
    
                   dest='install_type',
    
                   help=('The method of the OpenStack install')),
    
        cfg.IntOpt('threads', short='T', default=8, min=1,
                   help=('The number of threads to use while building.'
                         ' (Note: setting to one will allow real time'
                         ' logging.)')),
    
        cfg.StrOpt('tag', default=version.cached_version_string(),
    
                   help='The Docker tag'),
        cfg.BoolOpt('template-only', default=False,
                    help=("Don't build images. Generate Dockerfile only")),
    
        cfg.IntOpt('timeout', default=120,
                   help='Time in seconds after which any operation times out'),
    
        cfg.StrOpt('template-override',
                   help='Path to template override file'),
    
        cfg.StrOpt('logs-dir', help='Path to logs directory'),
    
        cfg.StrOpt('maintainer',
    
                   default='Kolla Project (https://launchpad.net/kolla)',
                   help='The MAINTAINER field'),
    
        cfg.ListOpt('rpm_setup_config',
    
    Allen Gao's avatar
    Allen Gao committed
                    help=('Comma separated list of .rpm or .repo file(s) '
    
    SamYaple's avatar
    SamYaple committed
                          'or URL(s) to install before building containers')),
        cfg.StrOpt('apt_sources_list', help=('Path to custom sources.list')),
        cfg.StrOpt('apt_preferences', help=('Path to custom apt/preferences'))
    
    ]
    
    
    SOURCES = {
        'openstack-base': {
            'type': 'url',
    
            'location': ('http://tarballs.openstack.org/requirements/'
    
                         'requirements-stable-newton.tar.gz')},
    
        'aodh-base': {
            'type': 'url',
    
    SamYaple's avatar
    SamYaple committed
            'location': ('http://tarballs.openstack.org/aodh/'
    
                         'aodh-3.0.0.tar.gz')},
    
        'barbican-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/barbican/'
    
                         'barbican-3.0.0.tar.gz')},
    
        'bifrost-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/bifrost/'
    
                         'bifrost-2.1.0.tar.gz')},
    
        'ceilometer-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/ceilometer/'
    
                         'ceilometer-7.0.0.tar.gz')},
    
        'cinder-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/cinder/'
    
                         'cinder-9.0.0.tar.gz')},
    
    MD NADEEM's avatar
    MD NADEEM committed
        'congress-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/congress/'
    
                         'congress-4.0.0.tar.gz')},
    
        'cloudkitty-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/cloudkitty/'
    
                         'cloudkitty-0.6.1.tar.gz')},
    
        'designate-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/designate/'
    
                         'designate-3.0.0.tar.gz')},
    
        'glance-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/glance/'
    
                         'glance-13.0.0.tar.gz')},
    
        'gnocchi-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/gnocchi/'
    
                         'gnocchi-3.0.0.tar.gz')},
    
        'heat-base': {
            'type': 'url',
    
    SamYaple's avatar
    SamYaple committed
            'location': ('http://tarballs.openstack.org/heat/'
    
                         'heat-7.0.0.tar.gz')},
    
        'horizon': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/horizon/'
    
                         'horizon-10.0.0.tar.gz')},
    
        'horizon-plugin-neutron-lbaas-dashboard': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/neutron-lbaas-dashboard/'
    
                         'neutron-lbaas-dashboard-1.0.0.tar.gz')},
    
        'ironic-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/ironic/'
    
                         'ironic-6.2.1.tar.gz')},
    
        'ironic-inspector': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/ironic-inspector/'
    
                         'ironic-inspector-4.2.0.tar.gz')},
    
        'keystone-base': {
    
            'type': 'url',
            'location': ('http://tarballs.openstack.org/keystone/'
    
                         'keystone-10.0.0.tar.gz')},
    
        'kuryr-base': {
    
    Hui Kang's avatar
    Hui Kang committed
            'type': 'url',
            'location': ('http://tarballs.openstack.org/kuryr/'
    
                         'kuryr-lib-0.1.0.tar.gz')},
    
        'kuryr-libnetwork': {
            'type': 'url',
    
            'location': ('http://tarballs.openstack.org/kuryr/'
                         'kuryr-lib-0.1.0.tar.gz')},
    
        'magnum-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/magnum/'
    
                         'magnum-3.1.1.tar.gz')},
    
        'manila-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/manila/'
    
                         'manila-3.0.0.tar.gz')},
    
        'mistral-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/mistral/'
    
                         'mistral-3.0.0.tar.gz')},
    
        'murano-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/murano/'
    
                         'murano-3.0.0.tar.gz')},
    
        'neutron-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/neutron/'
    
                         'neutron-9.0.0.tar.gz')},
    
        'neutron-lbaas-agent': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/neutron-lbaas/'
    
                         'neutron-lbaas-9.0.0.tar.gz')},
    
    prithiv's avatar
    prithiv committed
        'neutron-sfc-agent': {
    
            'type': 'url',
            'location': ('http://tarballs.openstack.org/networking-sfc/'
    
                         'networking-sfc-2.0.0.tar.gz')},
    
        'neutron-vpnaas-agent': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/neutron-vpnaas/'
    
                         'neutron-vpnaas-9.0.0.tar.gz')},
    
        'nova-base': {
            'type': 'url',
    
    SamYaple's avatar
    SamYaple committed
            'location': ('http://tarballs.openstack.org/nova/'
    
                         'nova-14.0.0.tar.gz')},
    
        'nova-spicehtml5proxy': {
            'type': 'url',
            'location': ('http://github.com/SPICE/spice-html5/tarball/'
                         'spice-html5-0.1.6')},
        'nova-novncproxy': {
            'type': 'url',
    
    SamYaple's avatar
    SamYaple committed
            'location': ('http://github.com/kanaka/noVNC/tarball/'
                         'v0.5.1')},
    
        'rally': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/rally/'
    
                         'rally-0.6.0.tar.gz')},
    
        'sahara-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/sahara/'
    
                         'sahara-5.0.0.tar.gz')},
    
        'searchlight-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/searchlight/'
                         'searchlight-1.0.0.tar.gz')},
    
        'senlin-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/senlin/'
    
                         'senlin-2.0.0.tar.gz')},
    
        'swift-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/swift/'
    
                         'swift-2.10.0.tar.gz')},
    
        'tempest': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/tempest/'
    
                         'tempest-13.0.0.tar.gz')},
    
        'trove-base': {
            'type': 'url',
    
    SamYaple's avatar
    SamYaple committed
            'location': ('http://tarballs.openstack.org/trove/'
    
                         'trove-6.0.0.tar.gz')},
    
        'watcher-base': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/watcher/'
    
                         'python-watcher-0.31.0.tar.gz')},
    
        'zaqar': {
            'type': 'url',
            'location': ('http://tarballs.openstack.org/zaqar/'
    
                         'zaqar-3.0.0.tar.gz')}
    
    def get_source_opts(type_=None, location=None, reference=None):
    
        return [cfg.StrOpt('type', choices=['local', 'git', 'url'],
    
                           default=type_,
                           help='Source location type'),
                cfg.StrOpt('location', default=location,
                           help='The location for source install'),
                cfg.StrOpt('reference', default=reference,
    
    Allen Gao's avatar
    Allen Gao committed
                           help=('Git reference to pull, commit sha, tag '
    
    def gen_all_source_opts():
    
        for name, params in SOURCES.items():
    
            type_ = params['type']
            location = params['location']
            reference = params.get('reference')
    
            yield name, get_source_opts(type_, location, reference)
    
    
    
    def list_opts():
        return itertools.chain([(None, _CLI_OPTS),
                                (None, _BASE_OPTS),
                                ('profiles', _PROFILE_OPTS)],
    
                               gen_all_source_opts(),
    
                               )
    
    
    def parse(conf, args, usage=None, prog=None,
              default_config_files=None):
        conf.register_cli_opts(_CLI_OPTS)
        conf.register_opts(_BASE_OPTS)
        conf.register_opts(_PROFILE_OPTS, group='profiles')
    
        for name, opts in gen_all_source_opts():
            conf.register_opts(opts, name)
    
    
        conf(args=args,
             project='kolla',
             usage=usage,
             prog=prog,
    
             version=version.cached_version_string(),
    
             default_config_files=default_config_files)
    
    
        # NOTE(jeffrey4l): set the default base tag based on the
        # base option
        conf.set_default('base_tag', DISTRO_RELEASE.get(conf.base))
    
    
        if not conf.base_image:
            conf.base_image = conf.base