Skip to content
Snippets Groups Projects
Commit a3a43e7b authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Add PBR generation of version information"

parents 91599cf6 31634c4d
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,17 @@ master_doc = 'index' ...@@ -39,6 +39,17 @@ master_doc = 'index'
project = u'kolla' project = u'kolla'
copyright = u'2013, OpenStack Foundation' copyright = u'2013, OpenStack Foundation'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
from kolla.version import version_info as kolla_version
# The full version, including alpha/beta/rc tags.
release = kolla_version.version_string_with_vcs()
# The short X.Y version.
version = kolla_version.canonical_version_string()
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True add_function_parentheses = True
......
...@@ -15,7 +15,7 @@ import itertools ...@@ -15,7 +15,7 @@ import itertools
from oslo_config import cfg from oslo_config import cfg
from oslo_config import types from oslo_config import types
from kolla import version from kolla.version import version_info as version
RDO_MIRROR = "http://trunk.rdoproject.org/centos7" RDO_MIRROR = "http://trunk.rdoproject.org/centos7"
...@@ -125,7 +125,7 @@ _CLI_OPTS = [ ...@@ -125,7 +125,7 @@ _CLI_OPTS = [
help=('The number of threads to use while building.' help=('The number of threads to use while building.'
' (Note: setting to one will allow real time' ' (Note: setting to one will allow real time'
' logging.)')), ' logging.)')),
cfg.StrOpt('tag', default=version.version_info.cached_version_string(), cfg.StrOpt('tag', default=version.cached_version_string(),
deprecated_group='kolla-build', deprecated_group='kolla-build',
help='The Docker tag'), help='The Docker tag'),
cfg.BoolOpt('template-only', default=False, cfg.BoolOpt('template-only', default=False,
...@@ -284,5 +284,5 @@ def parse(conf, args, usage=None, prog=None, ...@@ -284,5 +284,5 @@ def parse(conf, args, usage=None, prog=None,
project='kolla', project='kolla',
usage=usage, usage=usage,
prog=prog, prog=prog,
version=version.version_info.cached_version_string(), version=version.cached_version_string(),
default_config_files=default_config_files) default_config_files=default_config_files)
[metadata] [metadata]
name = kolla name = kolla
version = 2.0.0
summary = Kolla OpenStack Deployment summary = Kolla OpenStack Deployment
description-file = description-file =
README.rst README.rst
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment