Repository tracking all OpenStack repositories as submodules
Go to file
Pavlo Shchelokovskyy 24dda2b786 Update git submodules
* Update oslo.log from branch 'master'
  - Clarify some config options
    
    current help message to log-config-append is a bit misleading:
    if the extra logging config is using oslo_log's ContextFormatter
    as formatter for some handler, the logging_context_format_string
    option and the like do in fact still apply.
    
    Instead, give the `log-date-format` as example option that does apply
    when log-config-append is enabled and clarify that some options
    are used with ContextFormatter only.
    
    Change-Id: I917cdf8799ac0fb5b49873d5c7bccd957a42f347
    
  - Use template for lower-constraints
    
    Small cleanups:
    
    * Use openstack-lower-constraints-jobs template, remove individual
      jobs.
    * Sort list of templates
    
    Change-Id: I8270e6d25a19320bc3c854dfcf56379c52aeec53
    Needed-By: https://review.openstack.org/623229
    
  - Merge "Fix handling of exc_info in OSJournalHandler"
  - Default oslo.policy logging to INFO
    
    As of change https://review.openstack.org/619260/ to oslo.policy
    a lot of information is logged at debug for every policy check,
    which gets to be a lot of information in something like the
    nova-api logs which does a policy check per API request. So this
    change makes the default log level INFO for oslo.policy.
    
    Change-Id: Ie4a114219a69390efd148b705fad05fd8b9a42de
    Related-Bug: #1807747
    
  - Merge "Advancing the protocal of the website to HTTPS in usage.rst."
  - Merge "Fix up nits in log rotation change"
  - Update mailinglist from dev to discuss
    
    openstack-dev was decomissioned this night in https://review.openstack.org/621258
    Update openstack-dev to openstack-discuss
    
    Change-Id: Ia42def2fb8ccb5dc91ca0403511e2e30fc9081ab
    
  - Fix handling of exc_info in OSJournalHandler
    
    exc_info is exception tuple not intended to be printed. It's using to
    generate output by logging.Formatter().formatException() instead.
    exc_text used to cache this output. So we use handler formatter to get
    string from exc_info and send it as EXCEPTION_INFO. EXCEPTION_TEXT is
    kept for backward compatibility.
    
    Also adds type validation for journal.send fields to unit tests. Known
    types could be gotten from journal.DEFAULT_CONVERTERS. The rest payload
    must be either a string or bytes.
    
    Change-Id: Idc0b9edc61b4ec39dc9df0ea8282cc104e4d83c0
    Closes-Bug: 1802142
    
  - Fix up nits in log rotation change
    
    Just a couple of doc things that became out of date due to some
    code changes during the review process.
    
    Change-Id: I5820f7940d8d32546174da132db5be5a209a2200
    
  - Add config options for log rotation
    
    On Windows, in-use files cannot be moved or deleted. For this reason,
    we need the service itself to take care of rotating logs.
    
    For convenience reasons, we're exposing the built-in rotating log
    handlers through a set of config options.
    
    More specifically, we're adding the following new config options:
    - log_rotate_interval
    - log_rotate_interval_type
    - max_logfile_count
    - max_logfile_size_mb
    
    Change-Id: I01db4efc08e2cb64db9cbf793f3a159f54859fe7
    Closes-Bug: #1802262
    
  - Advancing the protocal of the website to HTTPS in usage.rst.
    
    Change-Id: Ibca48daefc917daed3f3f2a83c6d3c4973087289
    
  - Merge "Add Windows Event Log handler"
  - Add Windows Event Log handler
    
    The Python built-in logging module already provides a Windows Event
    Log handler. This change ensures that oslo.log exposes it.
    
    Change-Id: I287260b5046c88c433dfa66064da14faf15610e0
    Implements: blueprint windows-event-log
    
  - Clean up .gitignore references to personal tools
    
    Developers run all sorts of different tools within Git repositories,
    any of which can leave their own special trashfiles all over the
    place. We can't every hope to catalog them all, so better to
    recommend developers simply configure a global core.excludesfile to
    filter the irrelevant files which tend to get created by their
    personal choice of tools.
    
    To this end, remove the long-standing sections for "Mr Developer"
    and "Editors" since their mere existence here sends the signal that
    we welcome (and have time to review) additions for any old tool
    someone ever might happen to try. Also add a comment block
    explaining this, for clarity.
    
    We can, and should of course, continue to list files created by the
    tools recommended by our workflow (test frameworks called from tox,
    documentation and packaging builds, et cetera).
    
    This change is a port of I1b41efac219fca44e2548fc36633724d0ecfc0cb
    from the openstack-dev/oslo-cookiecutter repository.
    
    Change-Id: Ib2c9185265cfe7d2af5afc939f770cf5d5efb6ea
    
  - Always build universal wheels
    
    All of our projects are pure python, so we can build
    universal wheels by default.
    
    Change-Id: I173a1d5b4f204fcda2e92fd751228dbc79009b8c
    
  - Merge "Add devstack job with JSONFormatter configured"
  - Add devstack job with JSONFormatter configured
    
    We've run into issues in the past where a service passed something
    to the logger that broke JSONFormatter. To try to catch those sooner,
    add a job that configures the services to use JSONFormatter. This
    should provide a more realistic test of the formatter than we can
    hope to accomplish in unit tests.
    
    Change-Id: Icfb399cfe3dce89dfd5fb5079295a4947828417a
    
  - Filter args dict in JSONFormatter
    
    In most formatters, any unused keys in the args dict will just be
    discarded.  Because JSONFormatter logged the entire dict in addition
    to the message, some values were included in the output that may
    not have been intended.  This could include sensitive data, so we
    should stop that.
    
    In the interest of maintaining compatibility with any tools that are
    reading the args dict, we leave the dict but filter out any unused
    keys.
    
    Change-Id: Ib64837c1ae93a27bef3d30a776320a373f18dd1c
    Closes-Bug: 1571714
    Closes-Bug: 1787214
    
  - Merge "add lib-forward-testing-python3 test job"
  - Merge "add python 3.6 unit test job"
  - Merge "rewrite tests to not rely on implementation details of logging module"
  - Merge "import zuul job settings from project-config"
  - Merge "Follow the new PTI for document build"
  - Merge "Migrate to stestr"
  - Merge "Fix lower-constraints job"
  - add lib-forward-testing-python3 test job
    
    This is a mechanically generated patch to add a functional test job
    running under Python 3 as part of the python3-first goal.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: Ie968d6b5906ff0503b7cff6e2ed4c94b5cfcfa16
    Story: #2002586
    Task: #24322
    
  - add python 3.6 unit test job
    
    This is a mechanically generated patch to add a unit test job running
    under Python 3.6 as part of the python3-first goal.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: Id487fff8eaee94f2f3d27e91e97de3f92842c88d
    Story: #2002586
    Task: #24322
    
  - rewrite tests to not rely on implementation details of logging module
    
    The tests for ensuring the results of the adapter are passed to the
    logger correctly rely more on the implementation details of the
    logging library than on the adapter supposedly being tested. As the
    underlying implementation changes in various ways, this causes the
    tests to fail (most recently when we try to run the tests under python
    3.6. Rather than adding yet another case to the conditional for this
    specific version of python, rewrite the tests so they do not rely on
    the underlying implementation details.
    
    Change-Id: Id4d416852553b8d11ad27e25edcf9cceab3eb1b6
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
    fix
    
    Change-Id: I1f5140b0a9499c94e13fa3cd0f7151dc6c952621
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - import zuul job settings from project-config
    
    This is a mechanically generated patch to complete step 1 of moving
    the zuul job settings out of project-config and into each project
    repository.
    
    Because there will be a separate patch on each branch, the branch
    specifiers for branch-specific jobs have been removed.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: I380e361d5687dcc7f79cada43c6c97e4ce5c9e98
    Story: #2003250
    
  - Follow the new PTI for document build
    
    For compliance with the Project Testing Interface as described in:
    
    https://governance.openstack.org/tc/reference/project-testing-interface.html
    
    For more detials information, please refer to:
    
    http://lists.openstack.org/pipermail/openstack-dev/2017-December/125710.html
    
    Change-Id: I10537cf02d83f127b6932fa3f427043fb267d8b1
    Co-Authored-By: Stephen Finucane <sfinucan@redhat.com>
    
  - Migrate to stestr
    
    This should both keep mtreinish happy and get rid of annoying 'db type
    could not be determined' messages in one fell swoop.
    
    Change-Id: I0db004a8c8d75359e7d08c73b82f98c62a7e5f7d
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
    
  - Fix lower-constraints job
    
    Resolve the following warning:
    
      Package 'systemd-python' is used in systemd but not in
      lower-constraints.txt
    
    Also fix the lower bounds to match the lower-constraints.txt list.
    
    Change-Id: I84bf8ec53cd80f19598d1139d21d18b4f0cadddc
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
    
  - Imported Translations from Zanata
    
    For more information about this automatic import see:
    https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
    
    Change-Id: Ic6649fb0d258b704f6171ef83e6444c1ce239936
    
  - Update reno for stable/rocky
    
    Change-Id: If22461f4717164f9f2969e0ebb7d51e8196318e7
    
  - Merge "Automatically append reset_color to log lines"
  - Add release notes link to README
    
    Change-Id: If7a344080dc4f87573de4f638c08fd5fc9733f15
    
  - Merge "tox: Group targets and tool configuration together"
  - Merge "tox: Don't set basepython in testenv"
  - Merge "Provide reset_color key on log record"
  - Automatically append reset_color to log lines
    
    It's confusing that log colors can persist across multiple log lines
    if they are not explicitly reset at the end of each line.  This
    change automatically appends the reset escape sequence to the end of
    each log record passed through the ColorHandler so the behavior is
    more what most people would expect.
    
    Change-Id: I5fefdbdd7dd2ca437863bf2117b5a93b527e9776
    
  - fix tox python3 overrides
    
    We want to default to running all tox environments under python 3, so
    set the basepython value in each environment.
    
    We do not want to specify a minor version number, because we do not
    want to have to update the file every time we upgrade python.
    
    We do not want to set the override once in testenv, because that
    breaks the more specific versions used in default environments like
    py35 and py36.
    
    Change-Id: I5f2ebf16d2768811f55939a55bedf59b808e0b9e
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - Provide reset_color key on log record
    
    When logging with color, it is necessary to reset the color at the
    end of each line to avoid the color bleeding into subsequent log
    lines.  This change adds a new key to the record called 'reset_color'
    that serves as a shortcut to the escape sequence to reset the color.
    It also provides documentation for the ColorHandler class that
    explains how to use it.
    
    Change-Id: I68f1c716cbed241f79fa65dae1affe810b8e6e30
    Closes-Bug: 1731477
    
  - tox: Group targets and tool configuration together
    
    Easy readability win.
    
    Change-Id: Ic93c57cf2ffd73d75a88bc1efc8d67ee163a6c1f
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
    
  - tox: Don't set basepython in testenv
    
    Turns out doing this overrides the basepython for every 'py{version}'
    implicit target, meaning py35, py36 etc. will use the same Python 3.x
    version. We don't want that so set basepython manually.
    
    This will hopefully be a non-issue when the gate bumps to Bionic.
    
    Change-Id: I8d47f9ede4e9d1d221f6643135407ad2d5cea282
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
    
  - Fix Formatter subclasses for Python 3.2+
    
    Python 3.2 added the 'style' parameter to 'logging.Formatter.__init__'.
    This is provided by 'logging.config.fileConfig' meaning this currently
    raises a 'TypeError' similar to the below when the incompatible
    formatters, JSONFormatter and FluentFormatter, are used with Python 3.2
    or greater.
    
      TypeError: __init__() got an unexpected keyword argument 'style'
    
    Resolve this by simply adding the parameter to the list. There is more
    work we can do here (like actually supporting this parameter) but that's
    a job for another patch.
    
    Note that we can't actually test this as doing so would involve invoking
    'logging.config.fileConfig', which in turn would modify the global state
    of the 'logging' module. You can thank the singleton pattern for that.
    
    Change-Id: I9b339163ddfe440bc6782ced33595a0dcf60f658
    Closes-Bug: 1739743
    Co-Authored-By: Stephen Finucane <stephenfin@redhat.com>
    
  - Fix file permissions
    
    Change-Id: Iee0fbda6a167e5931d4778277a78da48debc84dd
    Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
    
  - Merge "Trivial: Update pypi url to new url"
  - Remove stale pip-missing-reqs tox test
    
    pip_missing_reqs tool is no longer maintained and has broken with
    release 10 of pip
    
    Refer to:
     http://lists.openstack.org/pipermail/openstack-dev/2018-April/130027.html
    
    Change-Id: Iad38f39390fbdd33fc9c64bba44d72613d4f58d9
    
  - Trivial: Update pypi url to new url
    
    Pypi url changed from [1] to [2]
    
    [1] https://pypi.python.org/pypi/<package>
    [2] https://pypi.org/project/<package>
    
    Change-Id: Ia29e0eaeab7b250ce1d0bd91a3f12642b6bd551c
    
  - Fix sphinx-docs job
    
    build-openstack-sphinx-docs jobs fail on all branches due to the new
    pip version 10 introduces some previously Warning as Error: in case of
    calling "pip install" without any package name, the command fails.
    tox_install.sh is called during docs job without any package passed to pip.
    
    Change-Id: I400d4acf93ab634683cd9c4b05db7c79a51810be
    
  - set default python to python3
    
    Set the default python to python3 except for the py27 environment. We
    have to set that explicitly to override the new default.
    
    Change-Id: Ibaf75b2da94c8ba4e0c1f4b3e60992c1a3f41001
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2019-02-20 22:29:01 +00:00
adjutant@ba14a45ba9 Update git submodules 2019-02-01 01:12:21 +00:00
adjutant-ui@64b7a8c58f Update git submodules 2019-01-17 03:31:57 +00:00
afsmon@618e1833e1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-config_template@78bcedc36e Update git submodules 2019-02-05 22:36:48 +00:00
ansible-hardening@ef1b417032 Update git submodules 2019-01-22 15:23:33 +00:00
ansible-role-chrony@550aa62372 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-container-registry@d6a749ace4 Update git submodules 2019-02-18 21:19:29 +00:00
ansible-role-k8s-cinder@2fb45a6ba9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-cookiecutter@67000fca3c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-glance@0d189c220a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-keystone@474ead8340 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-mariadb@c8f32372de Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-rabbitmq@8805081c10 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-k8s-tripleo@6729652e86 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-openstack-operations@0868b36e57 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-puppet@fe5255b56f Update git submodules 2019-02-03 15:54:58 +00:00
ansible-role-python_venv_build@ff0f3bf5f8 Update git submodules 2019-02-13 00:28:19 +00:00
ansible-role-qdrouterd@5490543352 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-redhat-subscription@13bf86da1f Update git submodules 2019-02-15 17:41:43 +00:00
ansible-role-systemd_mount@78fac0354b Update git submodules 2019-01-04 20:43:00 +00:00
ansible-role-systemd_networkd@7aef227b62 Update git submodules 2019-02-12 21:32:31 +00:00
ansible-role-systemd_service@6285b6c638 Update git submodules 2019-02-12 21:44:59 +00:00
ansible-role-tripleo-aodh@2af9345885 Update git submodules 2019-01-09 15:20:28 +00:00
ansible-role-tripleo-barbican@cce774fa80 Update git submodules 2019-01-07 19:37:25 +00:00
ansible-role-tripleo-ceilometer@d6f4fc18fe Update git submodules 2019-01-07 19:33:02 +00:00
ansible-role-tripleo-cinder@dc384e641c Update git submodules 2019-01-07 19:33:07 +00:00
ansible-role-tripleo-cookiecutter@6e9cad5a77 Update git submodules 2019-01-07 19:38:03 +00:00
ansible-role-tripleo-designate@dce60190b7 Update git submodules 2019-01-07 19:33:07 +00:00
ansible-role-tripleo-glance@38c685593c Update git submodules 2019-01-07 19:36:26 +00:00
ansible-role-tripleo-gnocchi@683a324724 Update git submodules 2019-01-07 19:36:51 +00:00
ansible-role-tripleo-haproxy@aee54974ee Update git submodules 2019-01-07 19:38:20 +00:00
ansible-role-tripleo-heat@0489fd1c65 Update git submodules 2019-01-07 19:37:33 +00:00
ansible-role-tripleo-horizon@24b95d0138 Update git submodules 2019-01-07 19:33:56 +00:00
ansible-role-tripleo-ironic@354004f360 Update git submodules 2019-01-07 19:38:12 +00:00
ansible-role-tripleo-keepalived@1f551f37da Update git submodules 2019-01-07 19:33:08 +00:00
ansible-role-tripleo-keystone@568b98dbb1 Update git submodules 2019-01-07 19:37:21 +00:00
ansible-role-tripleo-manila@93124e5af7 Update git submodules 2019-01-07 19:36:54 +00:00
ansible-role-tripleo-memcached@4bb116e740 Update git submodules 2019-01-07 19:38:06 +00:00
ansible-role-tripleo-mistral@2ccd43ec99 Update git submodules 2019-01-07 19:34:47 +00:00
ansible-role-tripleo-modify-image@8f0c6bf141 Update git submodules 2019-02-20 22:10:28 +00:00
ansible-role-tripleo-neutron@207d03beaa Update git submodules 2019-01-07 19:35:23 +00:00
ansible-role-tripleo-nova@bd6584beff Update git submodules 2019-01-07 19:39:22 +00:00
ansible-role-tripleo-octavia@ef4528420a Update git submodules 2019-01-07 19:39:23 +00:00
ansible-role-tripleo-opendaylight@a5cb4428e7 Update git submodules 2019-01-07 19:35:23 +00:00
ansible-role-tripleo-ovn@8dc8d443be Update git submodules 2019-01-07 19:39:53 +00:00
ansible-role-tripleo-panko@906325267c Update git submodules 2019-01-07 19:39:47 +00:00
ansible-role-tripleo-qdrouterd@87bf717fd0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-tripleo-rabbitmq@81b8df1331 Update git submodules 2019-01-07 19:35:16 +00:00
ansible-role-tripleo-rsyslog-sidecar@c3511bcc58 Update git submodules 2019-01-07 19:35:01 +00:00
ansible-role-tripleo-sahara@6e67b8b9a1 Update git submodules 2019-01-07 19:34:58 +00:00
ansible-role-tripleo-sensu@e856592d79 Update git submodules 2019-01-07 19:39:43 +00:00
ansible-role-tripleo-swift@5670e23716 Update git submodules 2019-01-07 19:35:02 +00:00
ansible-role-tripleo-tacker@44b8cf94b2 Update git submodules 2019-01-07 19:34:41 +00:00
ansible-role-tripleo-tempest@ec1f60823e Update git submodules 2019-01-07 19:35:20 +00:00
ansible-role-tripleo-ui@1449bb86f8 Update git submodules 2019-01-07 19:39:45 +00:00
ansible-role-tripleo-zaqar@e2a7951290 Update git submodules 2019-01-07 19:35:18 +00:00
aodh@1b552dd825 Update git submodules 2019-01-23 11:03:41 +00:00
askbot-theme@0cc9f5ffd4
automaton@0e9634c5fc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
barbican@34faa76587 Update git submodules 2019-02-13 17:18:24 +00:00
barbican-specs@42221b1db2 Update git submodules 2019-01-22 19:28:55 +00:00
barbican-tempest-plugin@123dd7d416 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
bashate@d4f6cfa3fb Update git submodules 2018-04-22 23:46:40 +00:00
bifrost@6a0ef585a9 Update git submodules 2019-02-20 21:29:04 +00:00
bindep@9377cdc14d Update git submodules 2019-02-19 11:01:54 +00:00
blazar@1855e059fc Update git submodules 2019-02-14 08:47:47 +00:00
blazar-dashboard@05c577af0a Update git submodules 2019-01-29 09:58:53 +00:00
blazar-nova@dc4c505f5e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
blazar-specs@7c3b003183 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
blazar-tempest-plugin@73ab5dbf98 Update git submodules 2019-02-14 08:26:00 +00:00
bugdaystats@6d52e41e38
castellan@a4efb7d949 Update git submodules 2019-02-19 17:32:30 +00:00
castellan-ui@63aeeaf311 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ceilometer@062e02c612 Update git submodules 2019-02-07 15:42:53 +00:00
ceilometer-powervm@7bf69d7bee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ceilometermiddleware@2f0efc7c99 Update git submodules 2018-02-06 18:51:19 +00:00
charm-aodh@afb54b422d Update git submodules 2019-02-12 12:52:54 +00:00
charm-barbican@2cdcea8d15 Update git submodules 2019-02-02 01:45:09 +00:00
charm-barbican-softhsm@4a2c3399dd Update git submodules 2019-01-24 06:34:02 +00:00
charm-barbican-vault@757e2da7ab Update git submodules 2019-01-24 06:31:33 +00:00
charm-ceilometer@97332d0e08 Update git submodules 2019-02-19 16:07:43 +00:00
charm-ceilometer-agent@0274c7dd9f Update git submodules 2019-02-19 16:05:13 +00:00
charm-ceph-fs@22533d4e03 Update git submodules 2019-01-24 06:32:58 +00:00
charm-ceph-mon@77953fe1a6 Update git submodules 2019-02-19 17:52:58 +00:00
charm-ceph-osd@441b9432e7 Update git submodules 2019-02-19 16:06:52 +00:00
charm-ceph-proxy@d26fabe674 Update git submodules 2019-02-19 16:05:54 +00:00
charm-ceph-radosgw@a25ae87994 Update git submodules 2019-02-19 16:11:27 +00:00
charm-cinder@8577da90f5 Update git submodules 2019-02-19 16:01:45 +00:00
charm-cinder-backup@a39788cb95 Update git submodules 2019-02-19 15:58:41 +00:00
charm-cinder-ceph@00b069df3f Update git submodules 2019-02-20 00:02:38 +00:00
charm-cloudkitty@3b9b265469 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-deployment-guide@daca7f62e2 Update git submodules 2019-02-04 16:42:53 +00:00
charm-designate@951a53b53d Update git submodules 2019-02-12 12:46:48 +00:00
charm-designate-bind@067249838b Update git submodules 2019-01-24 06:35:52 +00:00
charm-glance@211ac1ec6e Update git submodules 2019-02-19 16:03:36 +00:00
charm-glance-simplestreams-sync@b33167cd4e Update git submodules 2019-02-19 16:02:51 +00:00
charm-glusterfs@355467c1ec Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-gnocchi@4f48b46f17 Update git submodules 2019-02-07 07:29:27 +00:00
charm-guide@aa034ca1f2 Update git submodules 2019-01-09 06:56:14 +00:00
charm-hacluster@14ddde8163 Update git submodules 2019-02-19 16:06:13 +00:00
charm-heat@03aef9f645 Update git submodules 2019-02-19 16:02:22 +00:00
charm-interface-barbican-secrets@498279adb1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-bgp@ec52a95799 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-bind-rndc@7d6993adc3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-ceph-client@68c2d0ca1d Update git submodules 2019-02-20 09:02:36 +00:00
charm-interface-ceph-mds@579c0e4322 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-dashboard-plugin@15a4e6c8ee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-designate@26b986426a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-gnocchi@188d685775 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-hacluster@a4b62a9a00 Update git submodules 2019-02-19 19:02:59 +00:00
charm-interface-keystone@0ec113afb7 Update git submodules 2019-01-29 08:03:55 +00:00
charm-interface-keystone-admin@eac2145e5e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-keystone-credentials@e0ca24f5b5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-keystone-domain-backend@1d9a7a7f3e Update git submodules 2019-01-09 10:36:05 +00:00
charm-interface-manila-plugin@54e06a9217 Update git submodules 2019-01-09 10:29:36 +00:00
charm-interface-mysql-shared@29bf2cb5cb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-neutron-load-balancer@28635fd193 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-neutron-plugin@7d721ef02b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-neutron-plugin-api-subordinate@c6deebab3f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-nova-cell@663e6b741e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-nova-compute@dd789af72d Update git submodules 2019-01-10 07:01:16 +00:00
charm-interface-odl-controller-api@1f275b39e9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-openstack-ha@a6057418d9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-ovsdb-manager@6a1671abcc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-rabbitmq@30bc8d5966 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-service-control@a8e52b1d08 Update git submodules 2019-01-10 06:23:36 +00:00
charm-ironic@857835ace9 Update git submodules 2019-01-09 09:33:49 +00:00
charm-keystone@2dca259156 Update git submodules 2019-02-19 16:00:24 +00:00
charm-keystone-ldap@f966664d75 Update git submodules 2019-01-24 06:35:51 +00:00
charm-layer-ceph-base@7d0aa4e9a3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-layer-openstack@bfda016be4 Update git submodules 2019-01-11 15:47:26 +00:00
charm-layer-openstack-api@a27fc0c760 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-layer-openstack-principle@9938f45e9f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-lxd@2996db663f Update git submodules 2019-02-08 23:36:17 +00:00
charm-manila@5fc15ee7a4 Update git submodules 2019-02-02 01:47:33 +00:00
charm-manila-generic@4dc45ffe50 Update git submodules 2019-01-24 06:35:45 +00:00
charm-manila-glusterfs@2c5532cf45 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-mistral@2fc24d6c1d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-murano@d13410cd3b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-neutron-api@9c04d4ff33 Update git submodules 2019-02-19 16:02:23 +00:00
charm-neutron-api-genericswitch@f99af7502c Update git submodules 2019-01-09 09:02:06 +00:00
charm-neutron-api-odl@4b4d0dd922 Update git submodules 2019-01-09 09:03:25 +00:00
charm-neutron-dynamic-routing@af65fc44ce Update git submodules 2019-02-02 01:44:38 +00:00
charm-neutron-gateway@daf0371843 Update git submodules 2019-02-19 16:04:25 +00:00
charm-neutron-openvswitch@b6099422b0 Update git submodules 2019-02-19 16:04:47 +00:00
charm-nova-cell-controller@5d09b43119 Update git submodules 2019-02-02 01:44:01 +00:00
charm-nova-cloud-controller@80b597d5a2 Update git submodules 2019-02-19 16:06:45 +00:00
charm-nova-compute@32ef5b4cca Update git submodules 2019-02-20 16:02:48 +00:00
charm-nova-compute-proxy@b96926fb1a Update git submodules 2019-02-19 16:02:52 +00:00
charm-octavia@920c630a9e Update git submodules 2019-02-02 15:21:24 +00:00
charm-octavia-dashboard@d254d02029 Update git submodules 2019-01-24 06:33:32 +00:00
charm-odl-controller@e625b1a881 Update git submodules 2019-01-09 09:38:29 +00:00
charm-openstack-dashboard@32b0be7ce1 Update git submodules 2019-02-19 15:59:38 +00:00
charm-openvswitch-odl@bb9ad3ab2d Update git submodules 2019-01-09 08:59:28 +00:00
charm-panko@985c2af1f6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-percona-cluster@8bc44a9fde Update git submodules 2019-02-19 16:01:37 +00:00
charm-rabbitmq-server@a90446f0ff Update git submodules 2019-02-19 16:04:43 +00:00
charm-specs@9001d8083e Update git submodules 2019-01-15 09:30:45 +00:00
charm-swift-proxy@4ef5ba8177 Update git submodules 2019-02-19 16:01:06 +00:00
charm-swift-storage@0b3be36674 Update git submodules 2019-02-19 16:04:17 +00:00
charm-tempest@5e86d70e71 Update git submodules 2019-02-12 22:19:34 +00:00
charm-trove@48b78e4aeb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charms.ceph@c0d3f4d246 Update git submodules 2019-02-18 11:43:35 +00:00
charms.openstack@341b879cc1 Update git submodules 2019-02-06 16:20:03 +00:00
cinder@cf306ff52f Update git submodules 2019-02-20 04:53:35 +00:00
cinder-specs@da0810501a Update git submodules 2019-01-16 16:15:32 +00:00
cinder-tempest-plugin@f208601ab5 Update git submodules 2019-01-16 21:12:18 +00:00
ciwatch@a5f13c53f0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cliff@65e7d159c3 Update git submodules 2018-03-26 01:49:11 +00:00
cloudkitty@be38ba70f9 Update git submodules 2019-02-14 10:12:24 +00:00
cloudkitty-dashboard@28fe3b7bb0 Update git submodules 2019-02-05 14:25:18 +00:00
cloudkitty-specs@836c4ed418 Update git submodules 2019-02-14 09:22:51 +00:00
cloudkitty-tempest-plugin@ea0b694d89 Update git submodules 2019-02-05 15:04:06 +00:00
congress@bd56734f83 Update git submodules 2019-02-08 05:45:02 +00:00
congress-dashboard@78879e161c Update git submodules 2019-01-31 07:56:52 +00:00
congress-specs@df4a73b1eb Update git submodules 2019-01-09 18:03:18 +00:00
congress-tempest-plugin@7ceee1c6f5 Update git submodules 2019-02-08 04:17:19 +00:00
constellations@7c77efbb57 Update git submodules 2019-01-12 08:58:39 +00:00
contributor-guide@09547fd15e Update git submodules 2019-02-11 21:11:58 +00:00
cookbook-openstack-application-catalog@74d5e833b8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-bare-metal@de1d8fdbe1 Update git submodules 2019-01-07 16:36:27 +00:00
cookbook-openstack-block-storage@ea5c38398f Update git submodules 2019-01-08 15:36:11 +00:00
cookbook-openstack-client@cf0dff54c9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-common@f5e211b62b Update git submodules 2019-01-08 15:36:23 +00:00
cookbook-openstack-compute@20fb9a2311 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-dashboard@d42a397111 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-dns@7e0d7bdcb0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-identity@eabbbb9b5c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-image@8142de7e19 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-integration-test@33cd025214 Update git submodules 2019-01-08 16:53:01 +00:00
cookbook-openstack-network@66490ada34 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-ops-database@b3eaefbd80 Update git submodules 2019-01-08 16:27:53 +00:00
cookbook-openstack-ops-messaging@59285c3da4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-orchestration@c880cd18b2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstack-telemetry@a5bbccbe5c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookbook-openstackclient@51f3f6ff58 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cookiecutter@b73d89dc9f Update git submodules 2018-01-08 14:48:40 +00:00
coverage2sql@97b3c40428 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cyborg@64aef5dc87 Update git submodules 2019-02-19 20:06:36 +00:00
cyborg-specs@31f982fadb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
debtcollector@ba06902133 Update git submodules 2018-03-29 08:13:23 +00:00
designate@b22694b3ab Update git submodules 2019-02-20 04:18:22 +00:00
designate-dashboard@f2f9667357 Update git submodules 2019-02-20 20:12:32 +00:00
designate-specs@b8d890ea6f
designate-tempest-plugin@02fca4df41 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack@72f632222f Update git submodules 2019-02-19 08:56:11 +00:00
devstack-gate@907c1f999d Update git submodules 2019-01-10 05:43:53 +00:00
devstack-plugin-amqp1@dc1d560250 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-plugin-ceph@f61f618a69 Update git submodules 2019-02-08 16:11:22 +00:00
devstack-plugin-container@f896c23116 Update git submodules 2019-02-08 12:28:29 +00:00
devstack-plugin-kafka@28be3eed69 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-plugin-pika@9e1d956cc8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-plugin-zmq@f1d39abd34 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-tools@270cf481df Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-vagrant@b4365bed49
dib-utils@964784880d Update git submodules 2018-01-23 15:52:31 +00:00
diskimage-builder@5b1844acf9 Update git submodules 2019-02-19 10:08:45 +00:00
django_openstack_auth@58e881ec93
docs-specs@1e04477632 Update git submodules 2018-02-07 03:24:09 +00:00
ec2-api@46af2c326f Update git submodules 2019-01-04 14:45:38 +00:00
ec2api-tempest-plugin@2757fdac73 Update git submodules 2019-01-11 10:48:40 +00:00
elastic-recheck@5ce47d0635 Update git submodules 2019-02-12 13:51:21 +00:00
eslint-config-openstack@00303e7eb7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer@bf703976df Update git submodules 2019-02-20 07:41:52 +00:00
freezer-api@5e60886b08 Update git submodules 2019-02-15 05:00:32 +00:00
freezer-dr@1e687a4993 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer-specs@0014066505 Update git submodules 2019-01-28 12:05:02 +00:00
freezer-tempest-plugin@b53935acae Update git submodules 2019-01-29 01:38:27 +00:00
freezer-web-ui@1fc5b2b3ae Update git submodules 2019-01-28 11:59:10 +00:00
futurist@481e940785 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
gear@6a7417702d Update git submodules 2019-01-28 16:21:02 +00:00
gearman-plugin@46d74f029f
germqtt@b1067bbdd7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
gerrit@e707725ee6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
gerritbot@f32d742eff Update git submodules 2018-02-21 17:25:20 +00:00
gerritlib@01a634014e Update git submodules 2017-09-22 21:11:59 +00:00
git-restack@bef0f92120 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
git-review@514958d3f3 Update git submodules 2019-02-12 10:29:58 +00:00
gitdm@547072d99f Update git submodules 2018-03-07 18:39:32 +00:00
glance@88a8ad7823 Update git submodules 2019-02-18 08:44:44 +00:00
glance-specs@4cdd4a6cab Update git submodules 2019-02-14 11:24:58 +00:00
glance_store@d54ee8437f Update git submodules 2019-02-20 10:14:09 +00:00
glean@8ca30bdec8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
grafyaml@60a4c15c9b Update git submodules 2019-02-12 13:18:45 +00:00
grenade@dc7f4a4ba5 Update git submodules 2018-04-06 22:24:14 +00:00
groups@e825e37696
groups-static-pages@45de1bab35
hacking@f35a26f44b Update git submodules 2019-02-05 01:19:33 +00:00
heat@6e89926921 Update git submodules 2019-02-18 08:53:45 +00:00
heat-agents@6139799be2 Update git submodules 2019-02-12 07:33:47 +00:00
heat-cfnclient@780246248f Update git submodules 2019-02-15 16:07:21 +00:00
heat-cfntools@d23083a8e9 Update git submodules 2019-01-03 22:09:16 +00:00
heat-dashboard@e4a8ab4a11 Update git submodules 2019-02-17 04:09:47 +00:00
heat-specs@d0a0accca7 Update git submodules 2019-01-30 06:30:56 +00:00
heat-tempest-plugin@e2373b3ba2 Update git submodules 2019-01-23 12:14:06 +00:00
heat-templates@840692d3d4 Update git submodules 2019-01-23 04:55:25 +00:00
heat-translator@66ce5cf926 Update git submodules 2019-02-11 15:14:16 +00:00
horizon@d1a8b87dee Update git submodules 2019-02-20 15:16:48 +00:00
i18n@2a93e0be22 Update git submodules 2019-02-12 05:58:45 +00:00
i18n-specs@59eda7f2a4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
infra-ansible@9b02a6ebe2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
infra-manual@f84e92fb41 Update git submodules 2018-04-25 05:07:09 +00:00
infra-specs@382922894c Update git submodules 2018-04-24 15:16:57 +00:00
instack@24f9ef2a32 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
instack-undercloud@87abe05ba0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
irc-meetings@3ac0ee1851 Update git submodules 2019-02-20 14:28:46 +00:00
ironic@8c760675d3 Update git submodules 2019-02-20 14:51:25 +00:00
ironic-inspector@c98f387126 Update git submodules 2019-02-18 09:08:59 +00:00
ironic-inspector-specs@110ec01268 Update git submodules 2019-02-05 23:22:58 +00:00
ironic-lib@b4258bc6ce Update git submodules 2019-02-15 13:25:06 +00:00
ironic-python-agent@e5da6d0007 Update git submodules 2019-02-13 07:41:41 +00:00
ironic-python-agent-builder@aceb8d85f2 Update git submodules 2019-01-14 11:03:08 +00:00
ironic-specs@df996b9a7e Update git submodules 2019-01-31 08:14:11 +00:00
ironic-tempest-plugin@06ff9cb3d1 Update git submodules 2019-02-18 11:25:21 +00:00
ironic-ui@d73528db1d Update git submodules 2019-02-13 15:11:03 +00:00
jeepyb@6dfb888f4e Update git submodules 2018-03-23 22:33:38 +00:00
jenkins-job-builder@c59b5a5258 Update git submodules 2019-01-30 17:07:10 +00:00
js-openstack-lib@ff006579b3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
karbor@b9420dbdf5 Update git submodules 2019-02-20 03:15:01 +00:00
karbor-dashboard@d862d4e6d8 Update git submodules 2019-01-14 01:11:41 +00:00
karma-subunit-reporter@2c2c7aa620 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
keystone@dd8ee7ad36 Update git submodules 2019-02-19 19:19:40 +00:00
keystone-specs@b9041f0f77 Update git submodules 2019-02-18 16:22:18 +00:00
keystone-tempest-plugin@b573efb357 Update git submodules 2019-01-25 14:53:29 +00:00
keystoneauth@299bebc14d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
keystonemiddleware@fca37ea65b Update git submodules 2019-02-15 21:12:50 +00:00
kolla@dc20a3a0b6 Update git submodules 2019-02-18 14:28:52 +00:00
kolla-ansible@4a127d4bd9 Update git submodules 2019-02-19 10:23:25 +00:00
kolla-cli@46a09f1b18 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
kuryr@b3df2c6b5c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
kuryr-kubernetes@b76c379ed1 Update git submodules 2019-02-20 16:58:39 +00:00
kuryr-libnetwork@5fb8275d12 Update git submodules 2019-01-20 13:21:51 +00:00
kuryr-tempest-plugin@c31364ff06 Update git submodules 2019-02-07 18:55:17 +00:00
ldappool@2b8ce39b46 Update git submodules 2019-02-14 13:55:05 +00:00
loci@64de1b3869 Update git submodules 2019-02-15 17:42:07 +00:00
lodgeit@af3168e449
log-classify@45ae2b5e39 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
log_processor@2c63950e34 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
logstash-filters@41a4d92703 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
lpmqtt@4cff75293e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
magnum@9323da7819 Update git submodules 2019-02-20 11:08:01 +00:00
magnum-specs@e1c67df536 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
magnum-tempest-plugin@72a29d8e43 Update git submodules 2019-01-16 08:15:14 +00:00
magnum-ui@95520c0447 Update git submodules 2019-01-23 00:02:16 +00:00
manila@2c9994da3f Update git submodules 2019-02-20 19:37:39 +00:00
manila-image-elements@0639271d7f Update git submodules 2019-02-15 08:19:17 +00:00
manila-specs@3de949e358 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
manila-tempest-plugin@50a6760a64 Update git submodules 2019-02-17 14:59:57 +00:00
manila-test-image@855f132414 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
manila-ui@019526b5f8 Update git submodules 2019-02-14 21:37:26 +00:00
masakari@de2f4d637d Update git submodules 2019-02-19 04:31:27 +00:00
masakari-dashboard@aa512a8d59 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
masakari-monitors@2171a824bb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
masakari-specs@6311eae75b Update git submodules 2019-01-29 04:44:04 +00:00
meetbot@01e051648c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
metalsmith@e795f6c841 Update git submodules 2019-01-22 19:55:14 +00:00
mistral@6306e65770 Update git submodules 2019-02-20 13:01:37 +00:00
mistral-dashboard@29fa2cd15c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral-extra@5fe2ff8cd7 Update git submodules 2019-01-28 08:01:55 +00:00
mistral-lib@1c3cbd81a3 Update git submodules 2019-01-14 06:53:17 +00:00
mistral-specs@e13e89cbfc Update git submodules 2019-01-14 06:45:56 +00:00
mistral-tempest-plugin@d724aaeafe Update git submodules 2019-01-14 08:23:53 +00:00
molteniron@796e694f8d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-agent@4fd4b26f54 Update git submodules 2019-02-18 11:11:01 +00:00
monasca-analytics@29e27cfddb Update git submodules 2019-02-05 15:15:21 +00:00
monasca-api@87631f37f9 Update git submodules 2019-02-20 11:41:14 +00:00
monasca-ceilometer@93cd3ac9ec Update git submodules 2019-02-18 08:27:44 +00:00
monasca-common@52bb757314 Update git submodules 2019-02-13 19:19:50 +00:00
monasca-events-api@bcc8cb36c1 Update git submodules 2019-02-18 08:26:37 +00:00
monasca-grafana-datasource@7704954b75 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-kibana-plugin@bc8362249a Update git submodules 2019-02-06 10:05:25 +00:00
monasca-log-api@5c2ebbed54 Update git submodules 2019-02-08 12:28:38 +00:00
monasca-notification@8c63ee13d3 Update git submodules 2019-02-18 11:02:50 +00:00
monasca-persister@e1ce058430 Update git submodules 2019-02-20 10:43:06 +00:00
monasca-specs@551984592f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-statsd@0156d20a4d Update git submodules 2019-02-18 10:59:33 +00:00
monasca-tempest-plugin@2bb88453ed Update git submodules 2019-02-12 12:53:41 +00:00
monasca-thresh@443cce3951 Update git submodules 2019-02-11 13:32:53 +00:00
monasca-transform@1f22c98eb0 Update git submodules 2019-02-18 11:42:18 +00:00
monasca-ui@a6bc9ba3ce Update git submodules 2019-01-30 17:27:38 +00:00
mox3@543e2cc377 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mqtt_statsd@4a5adf8cca Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano@2d6b56370c Update git submodules 2019-02-20 03:57:56 +00:00
murano-agent@ce41ef5b78 Update git submodules 2019-02-18 11:54:31 +00:00
murano-apps@77e76fe199 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano-dashboard@2afddfb50e Update git submodules 2019-02-15 08:52:33 +00:00
murano-deployment@c75c682069 Update git submodules 2019-01-07 07:33:40 +00:00
murano-pkg-check@e5ac62f875 Update git submodules 2019-02-18 11:55:57 +00:00
murano-specs@56c797a959 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano-tempest-plugin@3fb9565f11 Update git submodules 2019-01-12 07:48:16 +00:00
networking-bagpipe@8e7613ce40 Update git submodules 2019-02-08 18:20:44 +00:00
networking-baremetal@83bfd77819 Update git submodules 2019-02-19 15:57:56 +00:00
networking-bgpvpn@fdec45b953 Update git submodules 2019-01-08 15:45:20 +00:00
networking-generic-switch@5e55bc78b2 Update git submodules 2019-02-05 16:54:11 +00:00
networking-generic-switch-tempest-plugin@85bfb8c45b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-hyperv@83daa42291 Update git submodules 2019-01-16 09:43:44 +00:00
networking-midonet@703097b39b Update git submodules 2019-02-07 11:13:40 +00:00
networking-odl@cec4fbd0fe Update git submodules 2019-01-06 12:04:47 +00:00
networking-ovn@5c571c99fa Update git submodules 2019-02-20 21:01:34 +00:00
networking-powervm@565687540d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-sfc@2508c2f7bd Update git submodules 2019-02-20 08:56:19 +00:00
neutron@fc3c0f9a09 Update git submodules 2019-02-20 10:52:57 +00:00
neutron-dynamic-routing@51986c5f75 Update git submodules 2019-02-20 05:01:10 +00:00
neutron-fwaas@36ca752e80 Update git submodules 2019-02-19 15:55:44 +00:00
neutron-fwaas-dashboard@836d46dbc8 Update git submodules 2019-02-19 16:08:23 +00:00
neutron-interconnection@74e6ae9831 Update git submodules 2019-02-12 22:23:42 +00:00
neutron-lbaas@bd0b903292 Update git submodules 2019-02-18 00:12:32 +00:00
neutron-lbaas-dashboard@b0fcd7eb64 Update git submodules 2019-02-20 22:13:51 +00:00
neutron-lib@044ca8e3e4 Update git submodules 2019-02-20 17:13:47 +00:00
neutron-specs@bb48efae10 Update git submodules 2019-02-13 10:23:27 +00:00
neutron-tempest-plugin@7bdee678c9 Update git submodules 2019-02-02 06:30:54 +00:00
neutron-vpnaas@c561e8940a Update git submodules 2019-01-08 04:39:01 +00:00
neutron-vpnaas-dashboard@e2982c445d Update git submodules 2019-02-19 16:04:56 +00:00
nose-html-output@71d12999b0
nova@af78b13c24 Update git submodules 2019-02-20 16:26:31 +00:00
nova-powervm@b3f9b9a5c2 Update git submodules 2019-02-12 20:50:17 +00:00
nova-specs@d796b33774 Update git submodules 2019-02-15 16:54:03 +00:00
octavia@9ce614ad84 Update git submodules 2019-02-18 00:09:36 +00:00
octavia-dashboard@7943510362 Update git submodules 2019-02-17 22:29:42 +00:00
octavia-lib@768465784c Update git submodules 2019-02-03 08:28:55 +00:00
octavia-tempest-plugin@a2f550348b Update git submodules 2019-02-18 10:55:56 +00:00
odsreg@88b1770704 Update git submodules 2017-11-23 16:53:39 +00:00
openstack-ansible@442d53a4d5 Update git submodules 2019-02-15 17:07:36 +00:00
openstack-ansible-apt_package_pinning@c35f1c52c5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-ceph_client@58be4bd5e3 Update git submodules 2019-02-14 14:05:47 +00:00
openstack-ansible-galera_client@0906a82944 Update git submodules 2019-01-07 15:16:32 +00:00
openstack-ansible-galera_server@36d95a112d Update git submodules 2019-02-18 15:14:21 +00:00
openstack-ansible-haproxy_server@4fb2059a3b Update git submodules 2019-01-28 10:22:07 +00:00
openstack-ansible-lxc_container_create@f067343085 Update git submodules 2019-01-16 02:01:00 +00:00
openstack-ansible-lxc_hosts@459355449a Update git submodules 2019-02-09 03:35:44 +00:00
openstack-ansible-memcached_server@9b0a15cf1c Update git submodules 2019-02-20 20:32:41 +00:00
openstack-ansible-nspawn_container_create@c61ffaf97b Update git submodules 2019-02-11 14:33:48 +00:00
openstack-ansible-nspawn_hosts@69806c52b8 Update git submodules 2019-02-14 07:52:37 +00:00
openstack-ansible-openstack_hosts@6a73496397 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-openstack_openrc@d7233f9ff9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-ops@aa41c62f9d Update git submodules 2019-02-20 06:16:53 +00:00
openstack-ansible-os_almanach@f477528e2d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_aodh@658b0229e9 Update git submodules 2019-02-09 04:59:06 +00:00
openstack-ansible-os_barbican@00563670d3 Update git submodules 2019-02-06 16:55:47 +00:00
openstack-ansible-os_blazar@cb561cc870 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_ceilometer@556d0ec4d9 Update git submodules 2019-02-07 18:33:18 +00:00
openstack-ansible-os_cinder@75f28d087a Update git submodules 2019-02-20 16:25:30 +00:00
openstack-ansible-os_cloudkitty@6470449d6e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_congress@455c2b4433 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_designate@0e922fcf55 Update git submodules 2019-02-12 22:20:19 +00:00
openstack-ansible-os_freezer@b75a75145f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_glance@2edb1b1a4d Update git submodules 2019-02-12 22:04:20 +00:00
openstack-ansible-os_gnocchi@f3eddb3d51 Update git submodules 2019-02-17 05:26:14 +00:00
openstack-ansible-os_heat@31e1349337 Update git submodules 2019-02-13 11:30:39 +00:00
openstack-ansible-os_horizon@46ce9ed999 Update git submodules 2019-02-06 16:56:07 +00:00
openstack-ansible-os_ironic@837fe2ec88 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_karbor@7b44052e18 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_keystone@b40f4b5e1a Update git submodules 2019-02-12 22:03:39 +00:00
openstack-ansible-os_magnum@33b192bfd9 Update git submodules 2019-02-12 22:50:30 +00:00
openstack-ansible-os_manila@690d5d26ae Update git submodules 2019-02-14 04:31:36 +00:00
openstack-ansible-os_masakari@0ba806a9b5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_molteniron@6d18fa4636 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_monasca@32f23c1964 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_monasca-agent@c82a6cf320 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_neutron@e61d4fd7c7 Update git submodules 2019-02-20 21:47:34 +00:00
openstack-ansible-os_nova@f826f9c7bc Update git submodules 2019-02-19 20:35:43 +00:00
openstack-ansible-os_octavia@eee659d342 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_panko@5a6add8c88 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_placement@32c1eb8488 Update git submodules 2019-02-08 14:47:59 +00:00
openstack-ansible-os_rally@9cf0c64a20 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_sahara@d0a23313ea Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_searchlight@ba29419f00 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_swift@430932f274 Update git submodules 2019-01-07 21:05:51 +00:00
openstack-ansible-os_tacker@886ee2a457 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_tempest@6364b54f79 Update git submodules 2019-02-20 04:14:49 +00:00
openstack-ansible-os_trove@b58811d7da Update git submodules 2019-02-12 22:05:53 +00:00
openstack-ansible-os_watcher@d293922640 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_zaqar@1eb81a3a41 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_zun@30256ebb6b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-pip_install@aa7ecc5248 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-pip_lock_down@fbd2fbe301 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-plugins@6e9aaf5ebb Update git submodules 2019-02-13 08:45:29 +00:00
openstack-ansible-rabbitmq_server@b622c1486a Update git submodules 2019-01-27 02:11:37 +00:00
openstack-ansible-repo_build@6cfcecf157 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-repo_server@271327c15d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-rsyslog_client@32cd32f262 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-rsyslog_server@abeaa16da8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-security@d7f838df9c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-specs@055cfacf83 Update git submodules 2019-01-07 03:51:03 +00:00
openstack-ansible-tests@ecde03823f Update git submodules 2019-02-13 10:28:31 +00:00
openstack-chef@3faee3507d Update git submodules 2019-01-07 16:47:31 +00:00
openstack-chef-repo@5f5a010013 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-chef-specs@440139ee58 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-doc-tools@c197ad0f65 Update git submodules 2019-01-23 01:57:27 +00:00
openstack-health@3ea4787c88 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-helm@815fa767ed Update git submodules 2019-02-16 17:57:25 +00:00
openstack-helm-addons@40c8ca5dfc Update git submodules 2019-02-20 05:50:58 +00:00
openstack-helm-docs@58093ca907 Update git submodules 2019-01-29 13:59:17 +00:00
openstack-helm-images@1d2bce87f0 Update git submodules 2019-02-16 01:01:33 +00:00
openstack-helm-infra@7387ecd71c Update git submodules 2019-02-19 16:50:43 +00:00
openstack-manuals@a5e33228b8 Update git submodules 2019-02-19 17:49:22 +00:00
openstack-nose@de9dcf85a0
openstack-planet@8816aea9ff Update git submodules 2018-03-09 13:42:40 +00:00
openstack-zuul-jobs@165eaf6cb6 Update git submodules 2019-02-12 15:16:46 +00:00
openstack-zuul-roles@153823ddcf Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstackclient@915593032c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstackdocstheme@5dd66b6dd6 Update git submodules 2019-02-05 12:21:30 +00:00
openstackid@392dfd3214 Update git submodules 2019-01-30 19:21:00 +00:00
openstackid-resources@5e61d68a49 Update git submodules 2019-02-18 20:10:20 +00:00
openstacksdk@b980ef3ff6 Update git submodules 2019-02-19 16:39:57 +00:00
openstackweb@38c8be9ed1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-acc@0506812fff Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-api-ref@3b3734499b Update git submodules 2019-01-15 01:05:29 +00:00
os-apply-config@b7a2d9e46c Update git submodules 2019-01-18 01:37:44 +00:00
os-brick@fb5ebc2f9e Update git submodules 2019-02-20 18:25:30 +00:00
os-client-config@74fc34a8f0 Update git submodules 2019-01-09 15:04:52 +00:00
os-collect-config@6bdbc35fbc Update git submodules 2019-01-18 01:37:44 +00:00
os-ken@f57d8b3b71 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-loganalyze@0f40dfd634 Update git submodules 2018-04-18 15:30:59 +00:00
os-net-config@fc9fbd4461 Update git submodules 2019-02-16 02:58:29 +00:00
os-performance-tools@cbafae38c7 Update git submodules 2019-01-17 15:47:11 +00:00
os-refresh-config@d0277ff948 Update git submodules 2019-02-05 00:54:39 +00:00
os-resource-classes@b0c27a7d62 Update git submodules 2019-01-21 13:40:24 +00:00
os-service-types@4170f2e584 Update git submodules 2019-01-22 18:02:24 +00:00
os-testr@381f52460d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-traits@7f43b7e9a9 Update git submodules 2019-02-08 12:56:29 +00:00
os-vif@3869596374 Update git submodules 2019-02-20 04:12:12 +00:00
os-win@7ed1f4db45 Update git submodules 2019-02-01 13:19:36 +00:00
osc-lib@6b27b0dcb1 Update git submodules 2019-02-12 01:32:50 +00:00
osc-placement@bffd59ea53 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo-cookiecutter@c7e47baf4a Update git submodules 2018-02-06 03:30:43 +00:00
oslo-specs@cba6fecac6 Update git submodules 2019-02-19 17:39:50 +00:00
oslo.cache@62b5309986 Update git submodules 2019-02-18 08:57:09 +00:00
oslo.concurrency@e11481b8f6 Update git submodules 2019-02-19 19:22:59 +00:00
oslo.config@fd4c1a0bf4 Update git submodules 2019-02-19 17:43:00 +00:00
oslo.context@76a07f9022 Update git submodules 2019-02-19 17:51:33 +00:00
oslo.db@5895d04fd8 Update git submodules 2019-02-13 11:48:46 +00:00
oslo.i18n@20bbee510b Update git submodules 2019-02-19 19:10:22 +00:00
oslo.limit@ac8ed1417d Update git submodules 2019-02-20 04:32:14 +00:00
oslo.log@7c5f8362b2 Update git submodules 2019-02-20 22:29:01 +00:00
oslo.messaging@7102eddb1f Update git submodules 2019-02-20 18:59:03 +00:00
oslo.middleware@acfa72e838 Update git submodules 2019-02-19 17:47:19 +00:00
oslo.policy@106a86d18e Update git submodules 2019-02-19 17:32:24 +00:00
oslo.privsep@130d7155c4 Update git submodules 2019-02-19 17:39:46 +00:00
oslo.reports@9fb535371e Update git submodules 2019-02-19 19:20:20 +00:00
oslo.rootwrap@0b6824d178 Update git submodules 2019-02-19 17:28:54 +00:00
oslo.serialization@bc2a1fb525 Update git submodules 2019-02-20 05:56:31 +00:00
oslo.service@d1afe5356d Update git submodules 2019-02-20 04:35:49 +00:00
oslo.tools@ca098008e9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.upgradecheck@fa57185b4b Update git submodules 2019-02-19 17:36:34 +00:00
oslo.utils@1803b63823 Update git submodules 2019-02-16 11:23:49 +00:00
oslo.versionedobjects@e6f79b8da5 Update git submodules 2019-02-20 13:07:26 +00:00
oslo.vmware@69f36d515b Update git submodules 2019-02-19 17:30:42 +00:00
oslosphinx@db2ca62a96 Update git submodules 2019-01-22 16:37:12 +00:00
oslotest@dac45a694c Update git submodules 2019-02-19 17:38:10 +00:00
osprofiler@da7a8592ae Update git submodules 2019-02-15 20:29:42 +00:00
oswin-tempest-plugin@df19edfc31 Update git submodules 2019-01-16 09:38:23 +00:00
ovsdbapp@4ee25ad6af Update git submodules 2019-02-19 16:06:08 +00:00
panko@97a72ebe85 Update git submodules 2019-01-30 06:37:40 +00:00
patrole@9866753ca8 Update git submodules 2019-02-05 09:31:02 +00:00
paunch@8c478a4600 Update git submodules 2019-02-18 11:57:01 +00:00
pbr@7909c7afd3 Update git submodules 2019-01-22 21:04:45 +00:00
performance-docs@31b87219c8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
placement@31a83b21b4 Update git submodules 2019-02-20 06:16:21 +00:00
project-config@dcde693956 Update git submodules 2019-02-20 18:51:36 +00:00
project-config-example@a8b504e0ba Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ptgbot@cb0e38cd12 Update git submodules 2019-01-07 10:37:31 +00:00
publications@824df0036b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-accessbot@ca36d793b3 Update git submodules 2018-03-26 21:57:58 +00:00
puppet-ansible@65c5bb3d95
puppet-aodh@d3b2dd80ab Update git submodules 2019-02-18 18:00:54 +00:00
puppet-apparmor@80a1265207
puppet-askbot@7abbdafc62
puppet-asterisk@b13391ded3
puppet-bandersnatch@cac249d5d2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-barbican@26abc42c2b Update git submodules 2019-02-18 17:57:04 +00:00
puppet-bugdaystats@c7b8745591
puppet-bup@013244fb40 Update git submodules 2017-11-02 06:22:33 +00:00
puppet-ceilometer@0ad4f6296d Update git submodules 2019-02-18 17:56:30 +00:00
puppet-ceph@e39f7d2320 Update git submodules 2019-02-11 21:21:07 +00:00
puppet-cgit@55c432baf6 Update git submodules 2018-03-27 23:37:05 +00:00
puppet-cinder@8f647a94f7 Update git submodules 2019-02-19 18:15:05 +00:00
puppet-ciwatch@540bfc49d8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-cloudkitty@00bb6c3f92 Update git submodules 2019-02-18 17:30:19 +00:00
puppet-congress@c1e3f13bd7 Update git submodules 2019-02-18 17:29:20 +00:00
puppet-crane@1c745473f2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-dashboard@9aa3039f9e
puppet-designate@4055441565 Update git submodules 2019-02-18 18:00:49 +00:00
puppet-diskimage_builder@bd2ab1b110 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-drupal@26bb0c054b Update git submodules 2018-05-01 12:20:43 +00:00
puppet-ec2api@1c40ef70f3 Update git submodules 2019-02-18 18:10:34 +00:00
puppet-elastic_recheck@9229117aba Update git submodules 2019-01-04 20:39:00 +00:00
puppet-elasticsearch@0d9347f41e Update git submodules 2017-09-21 21:10:38 +00:00
puppet-ethercalc@65eab03783 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-etherpad_lite@5b9395aea1 Update git submodules 2018-04-11 19:04:32 +00:00
puppet-exim@139fddd195 Update git submodules 2017-12-22 19:11:10 +00:00
puppet-freezer@2b5fdbab82 Update git submodules 2019-02-18 17:25:02 +00:00
puppet-germqtt@e8f9800d5d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-gerrit@352e7c112e Update git submodules 2019-01-14 23:48:30 +00:00
puppet-gerritbot@d434fd93d0 Update git submodules 2018-03-12 18:45:06 +00:00
puppet-github@30bbbfd58f
puppet-glance@ec00aca117 Update git submodules 2019-02-18 19:16:21 +00:00
puppet-glare@ca01ea1047 Update git submodules 2019-02-18 17:25:05 +00:00
puppet-gnocchi@2a8829a495 Update git submodules 2019-02-18 18:18:34 +00:00
puppet-grafyaml@86b1b0ea82 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-graphite@dfc94e4fd9 Update git submodules 2018-02-07 20:12:19 +00:00
puppet-haveged@c089b950bc Update git submodules 2017-11-20 21:51:42 +00:00
puppet-heat@532ab0ec88 Update git submodules 2019-02-18 19:27:52 +00:00
puppet-horizon@59ded9b70c Update git submodules 2019-02-13 03:02:58 +00:00
puppet-hound@2ecbcf6fe5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-httpd@9e47c78140 Update git submodules 2018-04-20 18:53:27 +00:00
puppet-infra-cookiecutter@4465a5ebaf Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-infracloud@d952cbc6c9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-ipsilon@f07628885b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-iptables@ac4f7e77e3 Update git submodules 2018-02-21 21:18:37 +00:00
puppet-ironic@dd3f372f3b Update git submodules 2019-02-18 19:01:12 +00:00
puppet-jeepyb@a06b1ae633 Update git submodules 2018-02-02 11:54:19 +00:00
puppet-jenkins@7a9eafd698
puppet-kerberos@4002c707ec Update git submodules 2017-12-15 23:59:34 +00:00
puppet-keystone@5401829e21 Update git submodules 2019-02-11 22:27:15 +00:00
puppet-kibana@efba033351 Update git submodules 2018-05-01 12:33:27 +00:00
puppet-lodgeit@9e01268f33 Update git submodules 2018-01-11 23:16:25 +00:00
puppet-log_processor@c646602e20 Update git submodules 2017-12-11 20:34:05 +00:00
puppet-logrotate@b922097fc7 Update git submodules 2018-03-26 22:00:47 +00:00
puppet-logstash@b7032eb94b
puppet-lpmqtt@ddd4542e56 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-magnum@f2d968ac6e Update git submodules 2019-02-18 17:29:41 +00:00
puppet-mailman@26be785a8f Update git submodules 2019-02-06 17:39:38 +00:00
puppet-manila@1fda14aefe Update git submodules 2019-02-18 18:20:33 +00:00
puppet-mediawiki@adec8d34f2
puppet-meetbot@9cd6a4d6a0 Update git submodules 2018-05-01 12:20:42 +00:00
puppet-mistral@80ad0c8ded Update git submodules 2019-02-18 19:00:08 +00:00
puppet-monasca@0102c8e543 Update git submodules 2019-02-11 21:04:55 +00:00
puppet-mosquitto@a0c52d6bc7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-mqtt_statsd@39791e8a73 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-murano@a1a3c25c4a Update git submodules 2019-02-13 03:02:38 +00:00
puppet-mysql_backup@b306534ff9 Update git submodules 2018-05-01 12:19:54 +00:00
puppet-neutron@b8e3c9eccb Update git submodules 2019-02-13 03:09:54 +00:00
puppet-nodepool@71fe2002e5 Update git submodules 2019-01-05 01:33:01 +00:00
puppet-nova@4164747aba Update git submodules 2019-02-18 20:28:45 +00:00
puppet-octavia@76440d6e8a Update git submodules 2019-02-18 17:51:22 +00:00
puppet-openafs@13a3a763e9 Update git submodules 2018-02-18 23:58:41 +00:00
puppet-openstack-cookiecutter@efc3a1676c Update git submodules 2019-02-13 03:07:17 +00:00
puppet-openstack-guide@93a4bde09f Update git submodules 2019-01-09 12:36:53 +00:00
puppet-openstack-integration@ddc4b9e21c Update git submodules 2019-02-18 18:20:25 +00:00
puppet-openstack-specs@d1a0b37aee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack_extras@166d8f944f Update git submodules 2019-02-11 20:47:19 +00:00
puppet-openstack_health@39be1bf1f1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack_infra_spec_helper@54ed0aa7a1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack_spec_helper@c10cc3fe6d Update git submodules 2019-01-22 18:47:36 +00:00
puppet-openstackci@20ae86a8f4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstackid@6336b6cdc7 Update git submodules 2019-02-15 18:35:24 +00:00
puppet-openstacklib@5d0b6b51c4 Update git submodules 2019-02-16 01:05:04 +00:00
puppet-os_client_config@f48bd2f36f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-oslo@e1aeb88b38 Update git submodules 2019-02-19 01:25:12 +00:00
puppet-ovn@24846bcf5e Update git submodules 2019-02-11 20:42:41 +00:00
puppet-pacemaker@5deba125b1 Update git submodules 2019-02-18 17:39:47 +00:00
puppet-packagekit@2897ff7691
puppet-panko@2314267cbc Update git submodules 2019-02-18 18:21:48 +00:00
puppet-pgsql_backup@ff4b95ad05 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-phabricator@92a27b18c3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-pip@bdfb4e7591 Update git submodules 2018-03-26 21:59:46 +00:00
puppet-placement@66957fd326 Update git submodules 2019-02-19 01:32:09 +00:00
puppet-planet@6d20d0feb7
puppet-project_config@8310d56085 Update git submodules 2017-09-21 16:53:49 +00:00
puppet-ptgbot@278c6493d7 Update git submodules 2019-01-07 17:57:48 +00:00
puppet-puppet@1ab90e3f75 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-qdr@c583d687be Update git submodules 2019-02-11 20:42:37 +00:00
puppet-rally@e9a490e0b4 Update git submodules 2019-02-13 03:08:31 +00:00
puppet-redis@3c653e5307
puppet-refstack@e93d8f55ee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-reviewday@cb806fc80b
puppet-sahara@efbeaaab25 Update git submodules 2019-02-18 18:11:09 +00:00
puppet-senlin@865209bd1b Update git submodules 2019-02-18 17:37:31 +00:00
puppet-simpleproxy@f7de5af0f9
puppet-snmpd@d804badd82 Update git submodules 2018-01-10 11:44:07 +00:00
puppet-ssh@685291c29e
puppet-ssl_cert_check@979573cec1
puppet-stackalytics@fd10957ead Update git submodules 2019-01-21 08:31:51 +00:00
puppet-statusbot@3973ed99a2 Update git submodules 2018-01-26 04:31:44 +00:00
puppet-storyboard@aa7ec0ee06 Update git submodules 2019-01-19 18:06:01 +00:00
puppet-subunit2sql@11005605dc Update git submodules 2019-02-04 16:39:20 +00:00
puppet-sudoers@ca25acebd5
puppet-swift@5a6296bc83 Update git submodules 2019-02-13 03:07:59 +00:00
puppet-tacker@e66ca58657 Update git submodules 2019-02-19 00:44:28 +00:00
puppet-tempest@172955d2dc Update git submodules 2019-02-11 20:48:34 +00:00
puppet-tmpreaper@c6ca908936
puppet-translation_checksite@b2fe5e04ec Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-tripleo@105e75fcfd Update git submodules 2019-02-20 02:44:27 +00:00
puppet-trove@4212800852 Update git submodules 2019-02-18 18:20:30 +00:00
puppet-ulimit@5fa98cc809
puppet-unattended_upgrades@825b3d68f5
puppet-unbound@3c4dcf3d51
puppet-user@fba7818b61
puppet-vcsrepo@1b625245d6
puppet-vitrage@899f0efe49 Update git submodules 2019-02-13 03:02:38 +00:00
puppet-vswitch@98fbd0d833 Update git submodules 2019-01-16 19:42:22 +00:00
puppet-watcher@a3f83dfe1f Update git submodules 2019-02-18 18:03:16 +00:00
puppet-yum@cfc3500aba
puppet-zanata@e1fb24b955 Update git submodules 2017-11-29 00:07:26 +00:00
puppet-zaqar@7640153684 Update git submodules 2019-02-18 19:10:40 +00:00
puppet-zuul@ebdb5fa51a Update git submodules 2019-02-12 23:57:33 +00:00
pycadf@e2cf4ed65e Update git submodules 2019-02-14 17:06:18 +00:00
pymod2pkg@d8c52f2621 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
pynotedb@e87d890c00 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-adjutantclient@05e8af6cf3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-aodhclient@6d03e61986 Update git submodules 2019-02-07 14:42:33 +00:00
python-barbicanclient@1b28235816 Update git submodules 2019-01-04 16:05:55 +00:00
python-blazarclient@ac372aab53 Update git submodules 2019-01-29 09:40:09 +00:00
python-brick-cinderclient-ext@50c79f07a6 Update git submodules 2019-02-15 17:46:16 +00:00
python-cinderclient@41d6ce3c3d Update git submodules 2019-02-15 18:47:14 +00:00
python-cloudkittyclient@e7a9f20999 Update git submodules 2019-02-05 14:51:47 +00:00
python-congressclient@b704432811 Update git submodules 2019-02-04 21:21:04 +00:00
python-cyborgclient@dfe15c51b7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-designateclient@6eeef0dd24 Update git submodules 2018-03-26 13:56:57 +00:00
python-freezerclient@f103a76d59 Update git submodules 2019-01-29 12:06:20 +00:00
python-glanceclient@31f7708b94 Update git submodules 2019-02-14 19:25:50 +00:00
python-heatclient@8af5deb458 Update git submodules 2019-01-03 22:45:12 +00:00
python-ironic-inspector-client@9bb11505d7 Update git submodules 2019-02-18 07:38:28 +00:00
python-ironicclient@6a35003a7d Update git submodules 2019-02-20 22:13:19 +00:00
python-karborclient@7d93f625d9 Update git submodules 2019-01-14 01:09:09 +00:00
python-keystoneclient@6c4bb8b529 Update git submodules 2019-02-16 00:57:30 +00:00
python-magnumclient@5deb538930 Update git submodules 2019-02-11 19:59:16 +00:00
python-manilaclient@7d6ef621c3 Update git submodules 2019-02-06 07:20:27 +00:00
python-masakariclient@60dfc77868 Update git submodules 2019-02-13 04:55:25 +00:00
python-mistralclient@9824e87cad Update git submodules 2019-02-13 09:42:43 +00:00
python-monascaclient@4339da2ee5 Update git submodules 2019-02-18 08:23:17 +00:00
python-muranoclient@ed7a0ee682 Update git submodules 2019-02-18 12:21:26 +00:00
python-neutronclient@d1c8b7486e Update git submodules 2019-02-07 17:56:55 +00:00
python-novaclient@81ea9887f0 Update git submodules 2019-02-16 15:30:15 +00:00
python-octaviaclient@4bf8454acf Update git submodules 2019-02-20 12:57:58 +00:00
python-openstackclient@55cbbbe469 Update git submodules 2019-02-19 16:13:54 +00:00
python-pankoclient@0a27e534d8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-qinlingclient@1d4dcfd85a Update git submodules 2019-02-19 11:37:38 +00:00
python-saharaclient@9ebd05065d Update git submodules 2019-01-11 01:27:12 +00:00
python-searchlightclient@5793232f25 Update git submodules 2019-02-20 01:42:11 +00:00
python-senlinclient@78a7f49a0c Update git submodules 2019-02-11 18:43:34 +00:00
python-solumclient@977717e756 Update git submodules 2019-01-05 04:05:55 +00:00
python-storyboardclient@940dd5c41e
python-swiftclient@4b99492dc5 Update git submodules 2019-02-14 04:11:09 +00:00
python-tackerclient@f4839f308a Update git submodules 2019-02-12 08:35:42 +00:00
python-tricircleclient@d7dc4eedb2 Update git submodules 2019-01-10 08:41:56 +00:00
python-tripleoclient@1e6c2f0803 Update git submodules 2019-02-20 15:43:30 +00:00
python-troveclient@463eab47e4 Update git submodules 2019-01-08 21:12:07 +00:00
python-vitrageclient@bde2d05710 Update git submodules 2019-02-19 10:11:51 +00:00
python-watcherclient@9d9c5fe3be Update git submodules 2019-02-01 09:30:20 +00:00
python-zaqarclient@a38a7ecb63 Update git submodules 2018-03-30 01:53:59 +00:00
python-zunclient@ebfa6b42da Update git submodules 2019-02-19 03:26:59 +00:00
qa-specs@09de20ea67 Update git submodules 2019-01-25 08:17:19 +00:00
qinling@220a45c5a0 Update git submodules 2019-02-15 08:55:07 +00:00
qinling-dashboard@94b9a551e2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
rally@2fad5a9ef5 Update git submodules 2019-02-19 16:25:53 +00:00
rally-openstack@fb8a67740b Update git submodules 2019-02-20 18:41:04 +00:00
release-schedule-generator@ccc0b8c590 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
release-test@bfbe801058 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
releases@7ee57278e7 Update git submodules 2019-02-20 12:52:22 +00:00
renderspec@dcc565f858 Update git submodules 2019-01-23 09:30:41 +00:00
reno@6fc9679844 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
requestsexceptions@69be3aba34 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
requirements@14a6e6b1e2 Update git submodules 2019-02-19 12:28:30 +00:00
reviewday@1992485332 Update git submodules 2017-12-09 15:46:46 +00:00
reviewstats@548a85d2a9
rpm-packaging@837a044f01 Update git submodules 2019-02-18 10:48:57 +00:00
rpm-packaging-tools@d4dc71da24 Update git submodules 2019-02-06 08:29:41 +00:00
sahara@e705b81821 Update git submodules 2019-02-18 19:50:32 +00:00
sahara-dashboard@268febe615 Update git submodules 2019-02-15 08:43:23 +00:00
sahara-extra@dd99413cd3
sahara-image-elements@48491edb72 Update git submodules 2019-02-07 14:25:08 +00:00
sahara-specs@eafb655c21 Update git submodules 2018-05-03 16:01:09 +00:00
sahara-tests@66df22936d Update git submodules 2019-02-17 23:05:11 +00:00
searchlight@e57ef4f0ff Update git submodules 2019-02-20 01:08:54 +00:00
searchlight-specs@b429ca01c4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
searchlight-ui@c50d9a725d Update git submodules 2019-02-19 23:29:54 +00:00
senlin@929b9697ad Update git submodules 2019-02-19 07:33:07 +00:00
senlin-dashboard@a53b79b49c Update git submodules 2019-02-05 23:59:31 +00:00
senlin-tempest-plugin@4615a29a70 Update git submodules 2019-02-19 07:33:06 +00:00
shade@e54e3b0cca Update git submodules 2019-01-14 11:13:47 +00:00
solum@f115d41eca Update git submodules 2019-01-17 06:47:45 +00:00
solum-dashboard@77c4c65f09 Update git submodules 2019-01-05 04:28:51 +00:00
solum-specs@f465db4250 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
solum-tempest-plugin@59171c1944 Update git submodules 2019-01-12 07:48:52 +00:00
specs-cookiecutter@296d6bc761 Update git submodules 2019-01-10 17:51:20 +00:00
sphinx-feature-classification@ac54bf193f Update git submodules 2019-02-19 22:14:52 +00:00
stackviz@e8199c3145 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
statusbot@7b3a04a575 Update git submodules 2018-02-20 23:54:48 +00:00
stevedore@40064ea0e7 Update git submodules 2018-03-27 14:10:40 +00:00
storlets@998b22ac6c Update git submodules 2019-02-19 10:47:03 +00:00
storyboard@14e3d53e5a Update git submodules 2019-02-15 17:28:17 +00:00
storyboard-webclient@884ca37c39 Update git submodules 2019-01-21 13:05:02 +00:00
subunit2sql@c807e204fc Update git submodules 2019-01-09 16:59:27 +00:00
sushy@0b3241b0bd Update git submodules 2019-02-18 11:13:57 +00:00
sushy-tools@4b707299e0 Update git submodules 2019-02-13 15:12:55 +00:00
swift@3c224af80c Update git submodules 2019-02-20 02:25:51 +00:00
swift-bench@b69aab178b Update git submodules 2019-01-04 00:38:43 +00:00
swift-specs@e53112c271
system-config@de69f35847 Update git submodules 2019-02-20 17:49:11 +00:00
tacker@e8b42ca4dd Update git submodules 2019-02-12 11:36:20 +00:00
tacker-horizon@3c4238fbf6 Update git submodules 2019-02-06 11:19:57 +00:00
tacker-specs@37e35389eb Update git submodules 2019-02-11 01:35:43 +00:00
taskflow@8c1fccf72e Update git submodules 2018-03-29 06:37:58 +00:00
telemetry-specs@05a16fd787 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
telemetry-tempest-plugin@7f0e315a78 Update git submodules 2019-02-18 11:03:55 +00:00
tempest@83e12b67c1 Update git submodules 2019-02-19 08:56:09 +00:00
tempest-horizon@e2ac2e03e4 Update git submodules 2019-01-12 13:49:02 +00:00
tempest-lib@000c2b49ee
tempest-plugin-cookiecutter@9ac1e0705c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tempest-stress@d598a7b9f1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tempest-tripleo-ui@fa61731a3d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tenks@529824e01d Update git submodules 2019-02-01 13:18:37 +00:00
tooz@d55449258a Update git submodules 2019-02-13 12:14:37 +00:00
tosca-parser@8cd4546f22 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
training-guides@9767e2d68a Update git submodules 2019-01-27 07:36:41 +00:00
training-labs@c58dd43f0b Update git submodules 2019-01-23 13:49:41 +00:00
tricircle@d6817cc359 Update git submodules 2019-01-15 10:00:13 +00:00
tripleo-ansible@8bfc802245 Update git submodules 2019-02-19 16:34:53 +00:00
tripleo-ci@8627f95f6a Update git submodules 2019-02-20 12:47:50 +00:00
tripleo-common@fe8dd5c907 Update git submodules 2019-02-19 19:27:14 +00:00
tripleo-common-tempest-plugin@522a80d176 Update git submodules 2019-02-12 12:23:45 +00:00
tripleo-docs@627f95032d Update git submodules 2019-02-19 17:01:10 +00:00
tripleo-ha-utils@ebb6db142c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-heat-templates@6f73f44a28 Update git submodules 2019-02-20 21:16:52 +00:00
tripleo-image-elements@97dc749860 Update git submodules 2019-02-11 23:43:57 +00:00
tripleo-ipsec@f60ad6c201 Update git submodules 2019-02-20 15:02:25 +00:00
tripleo-puppet-elements@a83cb97af6 Update git submodules 2019-02-15 03:44:12 +00:00
tripleo-quickstart@9e6177d0f1 Update git submodules 2019-02-20 13:26:38 +00:00
tripleo-quickstart-extras@53635dc0d9 Update git submodules 2019-02-20 13:26:34 +00:00
tripleo-repos@70e30aa6d3 Update git submodules 2019-02-19 13:21:22 +00:00
tripleo-specs@61b52f9d5a Update git submodules 2019-02-16 17:09:27 +00:00
tripleo-ui@bf0deec0ea Update git submodules 2019-01-24 16:25:59 +00:00
tripleo-upgrade@8f8f172a6f Update git submodules 2019-02-15 15:40:08 +00:00
tripleo-validations@e6490b3e36 Update git submodules 2019-02-18 12:39:26 +00:00
trove@795f2bde88 Update git submodules 2019-02-13 14:25:16 +00:00
trove-dashboard@3d091ed522 Update git submodules 2019-01-28 18:57:08 +00:00
trove-specs@9e93a231e3 Update git submodules 2018-04-25 02:51:14 +00:00
trove-tempest-plugin@45b175df17 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ui-cookiecutter@af2835fd4f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
virtualbmc@200b274954 Update git submodules 2019-02-14 09:53:51 +00:00
vitrage@a1d829009d Update git submodules 2019-02-20 15:42:40 +00:00
vitrage-dashboard@19829bfdee Update git submodules 2019-02-18 13:24:53 +00:00
vitrage-specs@d1e2cf07fb Update git submodules 2019-02-12 13:25:13 +00:00
vitrage-tempest-plugin@3361a52293 Update git submodules 2019-02-20 09:25:57 +00:00
watcher@9c4b750c9a Update git submodules 2019-02-20 02:45:18 +00:00
watcher-dashboard@50437a47e4 Update git submodules 2019-01-25 01:31:58 +00:00
watcher-specs@f3b4429951 Update git submodules 2019-01-25 08:41:11 +00:00
watcher-tempest-plugin@583d3ff186 Update git submodules 2019-02-12 01:52:10 +00:00
whereto@60d39c4959 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular@74c316c6f7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-bootstrap@a6fd6665a6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-gettext@e1d443c41e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-lrdragndrop@2192eb008f Update git submodules 2019-02-11 21:04:47 +00:00
xstatic-angular-material@77a1575aab Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-notify@83d3b65b76 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-smart-table@6d35558306 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-ui-router@789da35708 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-uuid@20ec6e6360 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-angular-vis@da9ba723e8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-bootstrap-datepicker@8f814583be Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-bootstrap-scss@9df24e86f2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-bootswatch@79fa5eb9aa Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-d3@f66bbbf9bf Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-filesaver@02800208ef Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-font-awesome@b8a162a5fc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-hogan@fab8856e15 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-jasmine@f8db790b64 Update git submodules 2019-02-11 21:04:29 +00:00
xstatic-jquery-migrate@51d97fc61b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-jquery.quicksearch@1fdd883862 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-jquery.tablesorter@e9b866243e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-js-yaml@7f98871637 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-jsencrypt@00696018e4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-json2yaml@f1e1b9f062 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-magic-search@119f1348af Update git submodules 2019-02-11 21:02:56 +00:00
xstatic-mdi@64dca40a7c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-rickshaw@e8d9237eb9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-roboto-fontface@0b87d4184d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-spin@385e5dcb06 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
xstatic-vis@bfb51c0009 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
yaml2ical@2bc859072f
yaql@f975ec2d59 Update git submodules 2019-01-12 07:49:58 +00:00
zaqar@813663bc03 Update git submodules 2019-02-19 07:14:22 +00:00
zaqar-specs@210374edfe Update git submodules 2018-04-23 05:45:45 +00:00
zaqar-tempest-plugin@8662c91038 Update git submodules 2019-01-10 06:54:24 +00:00
zaqar-ui@9d785297c9 Update git submodules 2019-01-23 00:05:53 +00:00
zmq-event-publisher@3ef6c4a112
zun@588115b80f Update git submodules 2019-02-20 03:28:44 +00:00
zun-tempest-plugin@e1d8cb3c73 Update git submodules 2019-02-17 23:47:32 +00:00
zun-ui@56b1e61b78 Update git submodules 2019-01-23 00:03:41 +00:00
.gitmodules Update git submodules based on new script 2019-01-04 14:13:17 +00:00
.gitreview
LICENSE Add Apache License file 2019-01-03 19:20:10 +00:00
README.rst
generate-gitmodules.py Update generate-gitmodules script for official deliverables 2019-01-03 19:21:27 +00:00

README.rst

OpenStack Tracking Repo

zuul gates all of the contained projects in an effective single timeline. This means that OpenStack, across all of the projects, does already have a sequence of combinations that have been explicitly tested, but it's non-trivial to go from a single commit of a particular project to the commits that were tested with it.

Gerrit's submodule tracking feature will update a super project every time a subproject is updated, so the specific sequence created by zuul will be captured by the super project commits.

This repo is intended to be used in a read-only manner. Any commit in this repo will get a collection of commits in the other repos that have explicitly been tested with each other, if that sort of thing is important to you.