Repository tracking all OpenStack repositories as submodules
Go to file
Zuul 3f5494984c Update git submodules
* Update keystonemiddleware from branch 'master'
  - Merge "Make sure audit middleware use own context"
  - Remove testr.conf as it's been replaced by stestr
    
    Change-Id: I73e5ed94cdd786d392a6a6b61b8ef4f630715482
    
  - Make sure audit middleware use own context
    
    Keystone audit middleware requires to iterate req.context as dict,
    but Glance requires to access req.context.read_only.
    When glance enabled audit, they are conflict with each other.
    This patch fix this issue by store audit context in
    req.environ['audit.context']
    
    Change-Id: Ib9a62a4cd0b7b9ffb9fa2d6440e8072d45ee0fee
    Closes-Bug: #1809101
    Signed-off-by: Leehom Li <feli5@cisco.com>
    
  - 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: Ibb6247bfb2cfe1c77f6841be2773cbff9475e0c6
    
  - Merge "Added request_id and global_request_id to CADF notifications"
  - Change openstack-dev to openstack-discuss
    
    Mailinglists have been updated. Openstack-discuss replaces openstack-dev.
    
    Change-Id: Ic98b7942c1f394a45958c86eb2d091490fc25b1f
    
  - Merge "Add py36 tox environment"
  - Added request_id and global_request_id to CADF notifications
    
    Change-Id: I8d571d3414071c68b4fa565dec46cc2d2941331c
    Closes-Bug: #1803940
    
  - Merge "Stop supporting revocation list"
  - Add py36 tox environment
    
    We already run python3.6 unit tests in CI. Add the py36 environment to
    the tox file so that developers with python3.6 available locally can opt
    into running that version too.
    
    Change-Id: Ic7aad3d4adfafba226d3b1d1b2106d55135ce6ff
    
  - Documentation Fix - auth_url Port Number
    
    Made a small fix to the documentation - replacing
    the current auth_url port number 35357, in the
    configuration section of the [keystone_authtoken],
    with 5000.
    
    This was based on an online conversation with Colleen;
    with the removal of the v2 API from keystone the project
    now recommends use of port 5000 instead of the previous one.
    
    Change-Id: I750a4d0e75e0b919fd00ddf21c0e7ce62d495f95
    
  - Stop supporting revocation list
    
    With keystone's move to eliminating pki, pkiz, and uuid tokens the
    revocation list is no longer generated. Keystonemiddleware no longer
    needs to attempt to retrieve it and reference it.
    
    Change-Id: Ief3bf1941e62f9136dbed11877bca81c4102041b
    closes-bug: #1361743
    partial-bug: #1649735
    partial-bug: #1736985
    
  - Fix audit target service selection
    
    The keystonemiddleware audit code would select the wrong OpenStack service
    endpoint for a request if the cloud is not using unique TCP ports for each
    service endpoint. As most services are no longer using a port per service,
    but instead using unique paths, this caused the audit to select the wrong
    target service. This leads to incorrect audit logging due to the wrong
    audit map being used.
    
    This patch checks the request to see if a TCP port was present in the request,
    and if not, fall back to using the target_endpoint_type configured in the
    audit map file.
    
    Change-Id: Ie2e0bf74ecca485d599a4041bb770bd6e296bc99
    Closes-bug: 1797584
    
  - Merge "Skip the services with no endpoints when parsing service catalog"
  - Merge "Expect paste.deploy and gnocchi/panko options"
  - Skip the services with no endpoints when parsing service catalog
    
    When parsing the service catalog to find the source, audit middleware
    should skip over the services which have no endpoints instead of
    assuming they will have at least one endpoint.
    
    Change-Id: I287873e99338d95baaf20d52ecb3a43763a401fc
    Closes-Bug: #1800017
    
  - Merge "Respect delay_auth_decision when Keystone is unavailable"
  - Respect delay_auth_decision when Keystone is unavailable
    
    The delay_auth_decision option has two main uses:
    
      1. Allow a service to provide its own auth mechanism, separate from
         auth tokens (like Swift's tempurl middleware).
      2. Allow a service to integrate with multiple auth middlewares which
         may want to use the same X-Auth-Token header.
    
    The first case works fine even when the service has trouble talking to
    Keystone -- the client doesn't send an X-Auth-Token header, so we never
    even attempt to contact Keystone.
    
    The second case can be problematic, however. The client will provide
    some token, and we don't know whether it's valid for Keystone, the other
    auth system, or neither. We have to *try* contacting Keystone, but if
    that was down we'd previously return a 503 without ever trying the other
    auth system. As a result, a Keystone failure results in a total system
    failure.
    
    Now, when delay_auth_decision is True and we cannot determine whether a
    token is valid or invalid, we'll instead declare the token invalid and
    defer the rejection. As a result, Keystone failures only affect Keystone
    users, and tokens issued by the other auth system may still be validated
    and used.
    
    Change-Id: Ie4b3319862ba7fbd329dc6883ce837e894d5270c
    
  - Merge "Use templates for cover and lower-constraints"
  - Merge "Remove tox_install.sh"
  - Use templates for cover and lower-constraints
    
    Use openstack-tox-cover template, this runs the cover job as
    non-voting in the check queue only.
    
    Use openstack-lower-constraints-jobs template
    
    Remove jobs that are part of the templates.
    
    Change-Id: I58f3bc27aab2885514b8c6a8379e1c2214bd1afd
    
  - Remove tox_install.sh
    
    As part of removing reliance on the old and deprecated zuul-cloner, we
    need to shift constraints declaration to the deps line. This means we
    unfortunately have to duplicate the extras declarations into
    test-requirements - because otherwise the contraints for
    keystonemiddleware conflicts with the installation of itself.
    
    Change-Id: I8dbb31d1c1fda6df386f456dcf1d8bbed6d168ce
    
  - No need to compare CONF content
    
    When setup AuthProtocol class, if the CONF object contains
    deprecated options, An Error "dictionary changed size during
    iteration" will raise when comparing the CONF content.
    
    Changing "!=" to "is not" here to avoid compare the CONF
    content anymore.
    
    Change-Id: I820aa244160db4f81149d2576386c86b46de0084
    Closes-bug: #1789351
    
  - 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: If3765f1d4fa236e37c48a68bcd1093addfc751ff
    Story: #2002586
    Task: #24304
    
  - 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: I3fcff11f87699cf36aabb37c7ccf9555280927a8
    Story: #2002586
    Task: #24304
    
  - switch documentation job to new PTI
    
    This is a mechanically generated patch to switch the documentation
    jobs to use the new PTI versions of the jobs 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: Iee42c4b458e8ae8694efbee7e176cd2f8e8d49cd
    Story: #2002586
    Task: #24304
    
  - 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.
    
    Because this patch is generated by a script, there may be some
    cosmetic changes to the layout of the YAML file(s) as the contents are
    normalized.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: Idf1fdd88a3be46477804ad2fd961f7e1114b600b
    Story: #2002586
    Task: #24304
    
  - Merge "Handle DiscoveryFailure errors"
  - Merge "add releasenotes to readme.rst"
  - add releasenotes to readme.rst
    
    Change-Id: Ie30c97327684934ac44d41883070ce22e8aa7a19
    
  - Handle DiscoveryFailure errors
    
    DiscoveryFailures can happen for a variety of reasons, ranging
    from service misconfiguration to a keystone outage to a transient
    network failure. If we don't catch and handle the failure here,
    it will almost certainly cause something further up the WSGI stack
    to send a 500 Internal Error (and likely log a traceback).
    
    A log line like
    
        Unable to validate token: Could not find versioned identity
        endpoints when attempting to authenticate. Please check that
        your auth_url is correct. Unable to establish connection to
        http://keystone:35357: HTTPConnectionPool(host='keystone',
        port=35357): Max retries exceeded with url: / (Caused by
        NewConnectionError('<urllib3.connection.HTTPConnection
        object at 0x7fc53e22e050>: Failed to establish a new
        connection: [Errno 111] ECONNREFUSED',))
    
    should be plenty enough for an operator to assess the situation;
    I don't need a 29-frame traceback.
    
    Change-Id: I946388c09b2ca0230d2cef009c679a7ac7c8398f
    
  - Update reno for stable/rocky
    
    Change-Id: If387869339f5b1abd91ef73237c9ea48a6fdbf77
    
  - Replace port 35357 with 5000
    
    With Keystone v3, the admin (35357) and public (5000) ports are
    the same and use the same keystone code paths for authentication.
    
    This patch set replace 35357 and only uses port 5000
    
    Change-Id: I596e3a2b29b2954bf7caef6f9408d9b2b4e890ee
    
  - Merge "Fix KeystoneMiddleware memcachepool abstraction"
  - Fix KeystoneMiddleware memcachepool abstraction
    
    Keystonemiddleware's abstraction for the memcache pool was broken
    when converting to use a queue.Queue. The logic that placed the
    connection back into the pool was moved to .acquire and the reserve
    method was not using acquire.
    
    Change-Id: I0eda5981cbb661f63790258cf8e70c7340615159
    Closes-Bug: #1782404
    
  - Document endpoint interface and region behavior
    
    After some debugging following [0] to figure out why ksm was
    not connecting to the specified auth_url, found out that
    ksm connects to the identity server on the 'admin' interface
    [1] after authenticating with auth_url and fetching the catalog if
    keystoneauth is being used. Otherwise it connects on identity_uri
    and disregards the service catalog [2].  This behavior was not
    documented.
    
    [0]. http://eavesdrop.openstack.org/irclogs/%23openstack-keystone/%23openstack-keystone.2017-09-19.log.html#t2017-09-19T17:50:06
    [1]. d1b7a1f092/keystonemiddleware/auth_token/__init__.py (L936-L938)
    [2]. d1b7a1f092/keystonemiddleware/auth_token/_auth.py (L121-L130)
    
    Change-Id: Ide40835de856012ac4dd71975beac9d32771f356
    
  - Merge "fix tox python3 overrides"
  - Merge "Follow the new PTI for document build"
  - 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: I21491f302cbc6ca7a9b5ac12c487cf214bf4866e
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - Merge "Don't rely on pbr ChangeLog for docs"
  - Merge "Switch coverage tox env to stestr"
  - 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
    http://lists.openstack.org/pipermail/openstack-dev/2017-December/125710.html
    http://lists.openstack.org/pipermail/openstack-dev/2018-March/128594.html
    
    Co-Authored-By: Nguyen Hai <nguyentrihai93@gmail.com>
    Change-Id: Ia0a27229f09467980ff4af014001febb017bb36d
    
  - Switch coverage tox env to stestr
    
    We already switched the unit tests to follow the updated PTI
    guidelines[1] but neglected to switch the coverage environment. Do that
    now.
    
    [1] https://governance.openstack.org/tc/reference/pti/python.html#python-test-running
    
    Change-Id: Ie153516196f18c030ea58e76a0eac15c86169c6b
    
  - Fix the title in index.rst
    
    The titles in the index.rst can't be shown in the webpage.
    This patch adds them back.
    
    Change-Id: I56febf6cb137b7f6dbc05365d48159be36d18c13
    
  - Don't rely on pbr ChangeLog for docs
    
    The ChangeLog file is generated when we run `python setup.py sdist`,
    which doesn't naturally happen when we run `tox -edocs`, so on a fresh
    clone the docs build will fail because it references the ChangeLog file
    which isn't there. Since we don't rely on pbr any more for release notes
    and we have a sophisticated release note management tool, point the docs
    at the published release notes instead of the pbr ChangeLog.
    
    Change-Id: I614091eae739154337795a8f120b68686ad0ed0a
    
  - Merge "Introduce new header for system-scoped tokens"
  - Introduce new header for system-scoped tokens
    
    Keystonemiddleware attempts to parse user/service tokens and populate
    request headers for other services to consume. This information is
    important for services looking to build oslo.context objects from
    request environments.
    
    Change-Id: I0717c2a5207a647999b4f9bcdf11f728984f0812
    Closes-Bug: 1766731
    
  - Imported Translations from Zanata
    
    For more information about this automatic import see:
    https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
    
    Change-Id: I27a90c1f3132af5cbbeb18a6e59f88f5fe387a36
    
  - Merge "Double quote www_authenticate_uri"
  - Merge "Only include response body if there's a response"
  - Merge "Remove empty files"
  - Merge "Properly zero out max_retries in test_http_error_not_cached_token"
  - Fix the doc CI failure
    
    CI job now uses pip >= 10.0.0 to install the package.
    
    In pip >= 10.0.0, if the package name is missing, the command
    "pip install -U" returns error, but in pip < 10.0.0 it
    just logs warning.
    
    So this patch make sure the package name exists first.
    
    Change-Id: Id900640a7133f837ece8c6c0e7d2e4c17665a53d
    
  - Double quote www_authenticate_uri
    
    Based on the RFCs[1], in http header, a string of text is parsed
    as a single value if it is quoted using double-quote marks.
    
    This patch change the single quote to double quote in the header
    "WWW-Authenticate" which is returned when 401 error raises.
    
    [1]: https://tools.ietf.org/html/rfc7230#section-3.2.6
         https://tools.ietf.org/html/rfc7235#section-2.1
    
    Change-Id: I524c93d30607ea6ab70de92ceea207ee77f34c25
    Closes-bug: #1762362
    
  - Only include response body if there's a response
    
    When handling timeouts talking to the keystone server, you may see log
    messages like
    
      authtoken: Bad response code while validating token: 408
      authtoken: Token validation failure.
      <traceback>
      AttributeError: 'NoneType' object has no attribute 'text'
    
    Since there's no response from the server when keystoneclient raises
    RequestTimeout [1], the `response` attribute is understandably None.
    
    Now, only log the response text if there's text to log. Additionally,
    log the response message (as well as status code) to provide as much
    context as we can for the error.
    
    [1] https://github.com/openstack/python-keystoneclient/blob/3.15.0/keystoneclient/session.py#L469
    
    Change-Id: Id400e4c38d07cbe7e1866dd572a17fc54c31e82a
    
  - Properly zero out max_retries in test_http_error_not_cached_token
    
    Previously, we'd set _http_request_max_retries to 0, but that attribute
    was removed in 1.3.0. Now, test runs are several seconds faster when
    tests are executed serially.
    
    Related-Change: Id092e8f42f843dbfbc1c30589b50ba341ccf4aae
    Change-Id: I61d9b9617b1118d0696435d028bbda7a6c119bf8
    
  - add lower-constraints job
    
    Create a tox environment for running the unit tests against the lower
    bounds of the dependencies.
    
    Create a lower-constraints.txt to be used to enforce the lower bounds
    in those tests.
    
    Add openstack-tox-lower-constraints job to the zuul configuration.
    
    See http://lists.openstack.org/pipermail/openstack-dev/2018-March/128352.html
    for more details.
    
    Change-Id: Ief8bbf14effa1266c62c4600f889a18f1fdbde32
    Depends-On: https://review.openstack.org/555034
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - Remove empty files
    
    examples/pki/cms/revocation_list.der
    is empty file. We probably should delete it.
    
    Change-Id: I15da1d514de07b76cf20d8fdf95cb11ffe816a70
    
  - Expect paste.deploy and gnocchi/panko options
    
    The authtoken middleware has been printing warning log messages to
    the API logs for all services, reporting unexpected conf keys. This
    was traced back to paste.deploy adding 'here' and '__file__' and
    both gnocchi and panko adding 'configkey' keys in wsgi apps though
    these do not actually exist in the conf file. This change allows
    for those keys without printing a warning that unnecessarily
    confuses operators.
    
    But it's kind of a hack, especially the configkey bit. We shouldn't
    have to know about gnocchi/panko specifics like this. And it doesn't
    address the comment in the bug about what is seen for ironic. So I
    think there will still be more to do here.
    
    Change-Id: I678482309c7dd35ce147bebf13ebefc84251fe91
    Partial-Bug: 1722444
2019-01-09 10:27:03 +00:00
adjutant@8e2b734398 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
adjutant-ui@baeb8879a2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
afsmon@618e1833e1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-config_template@d97279293d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-hardening@b792753b34 Update git submodules 2019-01-08 09:20:20 +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@61760f2fc1 Update git submodules based on new script 2019-01-04 14:13:17 +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@98b7ea710b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-python_venv_build@44c421b5af Update git submodules 2019-01-08 14:54:42 +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@1b3e473520 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ansible-role-systemd_mount@78fac0354b Update git submodules 2019-01-04 20:43:00 +00:00
ansible-role-systemd_networkd@c72988c4ce Update git submodules 2019-01-04 20:42:30 +00:00
ansible-role-systemd_service@7c8ebdcff1 Update git submodules 2019-01-04 20:46:55 +00:00
ansible-role-tripleo-aodh@721f32e559 Update git submodules based on new script 2019-01-04 14:13:17 +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@d67f1ef794 Update git submodules 2019-01-08 11:44:13 +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@c676eae200 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
askbot-theme@0cc9f5ffd4
automaton@0e9634c5fc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
barbican@0539a28ee9 Update git submodules 2017-12-22 02:30:48 +00:00
barbican-specs@44a26fd50f Update git submodules 2019-01-04 15:50:48 +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@225198e050 Update git submodules 2019-01-08 11:22:57 +00:00
bindep@1568971ca0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
blazar@37ff8b22b7 Update git submodules 2019-01-08 08:12:41 +00:00
blazar-dashboard@c3b61f0934 Update git submodules based on new script 2019-01-04 14:13:17 +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@d1d4a15d27 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
bugdaystats@6d52e41e38
castellan@18068e1779 Update git submodules 2018-04-10 02:59:40 +00:00
castellan-ui@63aeeaf311 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ceilometer@b263fb17b7 Updated openstack/openstack 2017-09-18 14:42:07 +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@87145fc2fc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-barbican@f43048a7d4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-barbican-softhsm@28b6e07273 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-barbican-vault@645574368d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-ceilometer@331769b327 Update git submodules 2019-01-09 09:33:22 +00:00
charm-ceilometer-agent@2c4296e41f Update git submodules 2019-01-09 09:34:17 +00:00
charm-ceph-fs@64060f1bb0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-ceph-mon@d6f1e116d6 Update git submodules 2019-01-09 09:37:26 +00:00
charm-ceph-osd@ff0bc0c6de Update git submodules 2019-01-09 09:10:20 +00:00
charm-ceph-proxy@609631e658 Update git submodules 2019-01-09 08:40:39 +00:00
charm-ceph-radosgw@56ecd98d81 Update git submodules 2019-01-09 09:38:15 +00:00
charm-cinder@8547fcdcfb Update git submodules 2019-01-09 09:35:07 +00:00
charm-cinder-backup@e3f280851f Update git submodules 2019-01-09 09:37:46 +00:00
charm-cinder-ceph@3e4dece9ba Update git submodules 2019-01-09 09:33:07 +00:00
charm-cloudkitty@3b9b265469 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-deployment-guide@bc33b8b04d Update git submodules 2019-01-09 06:54:29 +00:00
charm-designate@4b8a7ca433 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-designate-bind@23b16ad15d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-glance@52c4bd4448 Update git submodules 2019-01-09 09:33:06 +00:00
charm-glance-simplestreams-sync@fa304bf7c9 Update git submodules 2019-01-09 09:35:15 +00:00
charm-glusterfs@355467c1ec Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-gnocchi@32d17c3426 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-guide@aa034ca1f2 Update git submodules 2019-01-09 06:56:14 +00:00
charm-hacluster@c6f299747b Update git submodules 2019-01-09 08:46:49 +00:00
charm-heat@d965a3811b Update git submodules 2019-01-09 09:31:10 +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@e4997e5ab8 Update git submodules 2019-01-08 12:28:05 +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@a85b2d23c1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-keystone@1c92403c75 Update git submodules based on new script 2019-01-04 14:13:17 +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@891a7a22a1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-interface-manila-plugin@6892b60581 Update git submodules 2019-01-09 09:06:40 +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@edfff88fa1 Update git submodules based on new script 2019-01-04 14:13:17 +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@323c1c3b14 Update git submodules 2019-01-09 08:35:32 +00:00
charm-ironic@857835ace9 Update git submodules 2019-01-09 09:33:49 +00:00
charm-keystone@949ddd4018 Update git submodules 2019-01-09 09:30:41 +00:00
charm-keystone-ldap@22667a866e Update git submodules based on new script 2019-01-04 14:13:17 +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@cb4d058c0b Update git submodules based on new script 2019-01-04 14:13:17 +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@cdc86c0596 Update git submodules 2019-01-09 09:24:49 +00:00
charm-manila@2a8f616dcb Update git submodules 2019-01-09 09:03:24 +00:00
charm-manila-generic@709e3f85c9 Update git submodules based on new script 2019-01-04 14:13:17 +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@ef27c3ccc0 Update git submodules 2019-01-09 09:27:36 +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@a7fda9fdb1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-neutron-gateway@3b19f8fda1 Update git submodules 2019-01-09 09:29:24 +00:00
charm-neutron-openvswitch@97a6f8ef2a Update git submodules 2019-01-09 09:09:48 +00:00
charm-nova-cell-controller@0f15831a30 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-nova-cloud-controller@d9a92b87d0 Update git submodules 2019-01-09 09:25:40 +00:00
charm-nova-compute@2c724ea9ad Update git submodules 2019-01-09 09:33:07 +00:00
charm-nova-compute-proxy@023f3eaacf Update git submodules 2019-01-09 09:31:05 +00:00
charm-octavia@e63177168e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-octavia-dashboard@b19c1b3388 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-odl-controller@e625b1a881 Update git submodules 2019-01-09 09:38:29 +00:00
charm-openstack-dashboard@4be5d25d01 Update git submodules 2019-01-09 09:10:25 +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@c2dab944ce Update git submodules 2019-01-09 08:46:27 +00:00
charm-rabbitmq-server@2b907b0482 Update git submodules 2019-01-09 09:31:31 +00:00
charm-specs@4a6ac56f14 Update git submodules 2019-01-09 09:00:19 +00:00
charm-swift-proxy@5bc394a1df Update git submodules 2019-01-09 09:46:52 +00:00
charm-swift-storage@1cec15b2f9 Update git submodules 2019-01-09 09:35:06 +00:00
charm-tempest@a68c6dc424 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charm-trove@48b78e4aeb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
charms.ceph@414c4b9923 Update git submodules 2019-01-08 15:42:53 +00:00
charms.openstack@759511722f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cinder@da34b35579 Update git submodules 2019-01-09 09:37:47 +00:00
cinder-specs@e161da5fe6 Update git submodules 2019-01-08 20:53:56 +00:00
cinder-tempest-plugin@e935d35956 Update git submodules based on new script 2019-01-04 14:13:17 +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@838ec237e4 Update git submodules 2019-01-08 16:52:34 +00:00
cloudkitty-dashboard@aa0bb413b4 Update git submodules 2019-01-07 10:26:51 +00:00
cloudkitty-specs@95becab605 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
cloudkitty-tempest-plugin@979ef78512 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
congress@d02c95ccc9 Update git submodules 2019-01-07 20:12:29 +00:00
congress-dashboard@d2ea4ee633 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
congress-specs@deb1813c0b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
congress-tempest-plugin@e31aa96662 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
constellations@6d73c48532 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
contributor-guide@5cd2665eed Update git submodules based on new script 2019-01-04 14:13:17 +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@34eac481a4 Update git submodules based on new script 2019-01-04 14:13:17 +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@f97df023b2 Update git submodules 2019-01-04 20:04:38 +00:00
designate-dashboard@dcc3a5d253 Update git submodules based on new script 2019-01-04 14:13:17 +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@a88a22969c Update git submodules 2019-01-06 13:38:06 +00:00
devstack-gate@113a3c6abb Update git submodules 2019-01-04 19:03:39 +00:00
devstack-plugin-amqp1@dc1d560250 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-plugin-ceph@c669989cd8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
devstack-plugin-container@7e44a59c1e Update git submodules based on new script 2019-01-04 14:13:17 +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@8d3fa3a85c Update git submodules 2019-01-09 03:38:25 +00:00
django_openstack_auth@58e881ec93 Updated openstack/openstack 2017-09-12 22:04:13 +00:00
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@42bce570ca Update git submodules based on new script 2019-01-04 14:13:17 +00:00
elastic-recheck@4428bf52cd Update git submodules 2018-04-20 01:26:50 +00:00
eslint-config-openstack@00303e7eb7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer@5dc9e94b0d Update git submodules 2019-01-08 06:07:29 +00:00
freezer-api@bb48fb398d Update git submodules 2019-01-09 09:03:10 +00:00
freezer-dr@1e687a4993 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer-specs@175ca4e74e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer-tempest-plugin@cd8a7bd9e6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
freezer-web-ui@e932639c17 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
futurist@481e940785 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
gear@c00ca944db Update git submodules 2018-04-16 21:22:53 +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@ed3c79e452 Update git submodules 2018-04-30 00:02:52 +00:00
gitdm@547072d99f Update git submodules 2018-03-07 18:39:32 +00:00
glance@dbff6adcb7 Update git submodules 2019-01-09 04:19:05 +00:00
glance-specs@ad5233bd78 Update git submodules 2018-03-09 10:28:14 +00:00
glance_store@de27161e78 Update git submodules 2019-01-08 16:21:43 +00:00
glean@8ca30bdec8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
grafyaml@5463ff095e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
grenade@dc7f4a4ba5 Update git submodules 2018-04-06 22:24:14 +00:00
groups@e825e37696 Updated openstack/openstack 2017-08-31 05:10:06 +00:00
groups-static-pages@45de1bab35
hacking@d5353c87cc Update git submodules 2018-03-26 01:26:24 +00:00
heat@48d3280070 Update git submodules 2019-01-07 11:07:43 +00:00
heat-agents@828fd1e063 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
heat-cfnclient@32555c34a0
heat-cfntools@d23083a8e9 Update git submodules 2019-01-03 22:09:16 +00:00
heat-dashboard@da62b278a6 Update git submodules 2019-01-08 08:35:16 +00:00
heat-specs@8e865c99e9 Update git submodules 2017-11-20 04:46:08 +00:00
heat-tempest-plugin@ad04045b63 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
heat-templates@aa4ffd1c77 Update git submodules 2019-01-03 22:45:47 +00:00
heat-translator@3f08ea4dee Update git submodules 2018-03-26 12:52:20 +00:00
horizon@59038e69bd Update git submodules 2019-01-09 07:23:02 +00:00
i18n@e8db048a09 Update git submodules 2019-01-05 08:08:01 +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@bc078df0ff Update git submodules 2019-01-09 05:29:17 +00:00
ironic@b77fe3c427 Update git submodules 2019-01-08 18:19:44 +00:00
ironic-inspector@9a8cb3a49c Update git submodules 2019-01-08 14:41:55 +00:00
ironic-inspector-specs@bd764399d4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ironic-lib@b2c184f723 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ironic-python-agent@ea934658c3 Update git submodules 2019-01-08 14:41:56 +00:00
ironic-python-agent-builder@de8dd8472a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ironic-specs@8dbe3184ee Update git submodules 2018-04-24 01:53:16 +00:00
ironic-tempest-plugin@6fe29d2aed Update git submodules 2019-01-07 17:33:40 +00:00
ironic-ui@974781b4b7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
jeepyb@6dfb888f4e Update git submodules 2018-03-23 22:33:38 +00:00
jenkins-job-builder@51e2a99d58 Update git submodules 2019-01-08 16:23:54 +00:00
js-openstack-lib@ff006579b3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
karbor@166a3ddd1e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
karbor-dashboard@9300916345 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
karma-subunit-reporter@2c2c7aa620 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
keystone@921da38316 Update git submodules 2019-01-09 03:16:21 +00:00
keystone-specs@dfeb67c789 Update git submodules 2018-04-10 16:16:08 +00:00
keystone-tempest-plugin@958d34ee2d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
keystoneauth@299bebc14d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
keystonemiddleware@4bc0958007 Update git submodules 2019-01-09 10:27:03 +00:00
kolla@f01b950eba Update git submodules based on new script 2019-01-04 14:13:17 +00:00
kolla-ansible@beee4f7c96 Update git submodules 2019-01-08 10:34:54 +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@7480cc36f8 Update git submodules 2019-01-08 19:17:06 +00:00
kuryr-libnetwork@a9a70b3178 Update git submodules 2019-01-06 06:33:26 +00:00
kuryr-tempest-plugin@7f84979019 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ldappool@4e29af8bbc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
loci@6c7bddb8b2 Update git submodules based on new script 2019-01-04 14:13:17 +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@0bf9ccadcb Update git submodules 2019-01-08 21:32:21 +00:00
magnum-specs@e1c67df536 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
magnum-tempest-plugin@5c55cb1a4b Update git submodules 2019-01-09 09:27:43 +00:00
magnum-ui@f161df1d95 Update git submodules 2019-01-08 02:46:57 +00:00
manila@8f88779778 Update git submodules 2019-01-08 23:26:42 +00:00
manila-image-elements@53b7969bb5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
manila-specs@3de949e358 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
manila-tempest-plugin@df99c2db0c Update git submodules 2019-01-09 06:11:48 +00:00
manila-test-image@855f132414 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
manila-ui@13681f910e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
masakari@4808a2a3d3 Update git submodules based on new script 2019-01-04 14:13:17 +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@d1cc99d15d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
meetbot@01e051648c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
metalsmith@19a3156bdf Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral@fdd50f0e25 Update git submodules 2019-01-09 04:52:21 +00:00
mistral-dashboard@29fa2cd15c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral-extra@255f4d54bc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral-lib@6a867cb4f6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral-specs@c163c8ee8b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
mistral-tempest-plugin@0c053b012f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
molteniron@796e694f8d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-agent@dd5441cd40 Update git submodules 2019-01-04 14:43:23 +00:00
monasca-analytics@f980d98f41 Update git submodules 2019-01-07 11:43:03 +00:00
monasca-api@e25ec337c8 Update git submodules 2019-01-08 13:05:28 +00:00
monasca-ceilometer@3de5cb4c45 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-common@6f7f46cf0c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-events-api@82dee1cb80 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-grafana-datasource@7704954b75 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-kibana-plugin@32e8d3f477 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-log-api@397a25f1d8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-notification@4ffa8dee1d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-persister@e6d49a20c2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-specs@551984592f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-statsd@264cb6356d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-tempest-plugin@aadc24ea03 Update git submodules 2019-01-07 14:44:18 +00:00
monasca-thresh@a9b759dbfb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-transform@73e5f9a833 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
monasca-ui@69707117b3 Update git submodules based on new script 2019-01-04 14:13:17 +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@fba8546d42 Update git submodules 2019-01-09 10:22:51 +00:00
murano-agent@0d0e9faa45 Update git submodules 2019-01-05 08:10:47 +00:00
murano-apps@77e76fe199 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano-dashboard@704a2ff225 Update git submodules 2019-01-05 08:13:57 +00:00
murano-deployment@c75c682069 Update git submodules 2019-01-07 07:33:40 +00:00
murano-pkg-check@fae7d2d881 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano-specs@56c797a959 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
murano-tempest-plugin@76bed12565 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-bagpipe@78d78db9a9 Update git submodules 2019-01-08 17:44:58 +00:00
networking-baremetal@d285030b16 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-bgpvpn@fdec45b953 Update git submodules 2019-01-08 15:45:20 +00:00
networking-generic-switch@b3fba36b82 Update git submodules based on new script 2019-01-04 14:13:17 +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@0e900b6cfe Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-midonet@bcf334ba07 Update git submodules 2019-01-08 05:17:02 +00:00
networking-odl@cec4fbd0fe Update git submodules 2019-01-06 12:04:47 +00:00
networking-ovn@04e446f9f9 Update git submodules 2019-01-08 17:52:46 +00:00
networking-powervm@565687540d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
networking-sfc@941f3497f3 Update git submodules 2019-01-08 19:57:00 +00:00
neutron@051b6b40f3 Update git submodules 2019-01-09 03:02:18 +00:00
neutron-dynamic-routing@9480ad0229 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
neutron-fwaas@781a06c983 Update git submodules 2019-01-08 22:57:32 +00:00
neutron-fwaas-dashboard@acf3f91833 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
neutron-interconnection@96af8d1c8c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
neutron-lbaas@16fba7e548 Update git submodules 2017-12-28 12:02:26 +00:00
neutron-lbaas-dashboard@c63cd7dfc1 Update git submodules 2019-01-08 11:25:06 +00:00
neutron-lib@3ef70e81a1 Update git submodules 2019-01-07 15:08:48 +00:00
neutron-specs@629248149d Update git submodules 2019-01-09 08:31:47 +00:00
neutron-tempest-plugin@fc3b314662 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
neutron-vpnaas@c561e8940a Update git submodules 2019-01-08 04:39:01 +00:00
neutron-vpnaas-dashboard@f0c89106fd Update git submodules based on new script 2019-01-04 14:13:17 +00:00
nose-html-output@71d12999b0 Updated openstack/openstack 2017-08-22 16:50:47 +00:00
nova@1351f031b8 Update git submodules 2019-01-08 04:44:38 +00:00
nova-powervm@2dcdc531e6 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
nova-specs@efc9e6eb6a Update git submodules 2019-01-08 17:51:00 +00:00
octavia@7675c40d30 Update git submodules 2019-01-09 04:05:19 +00:00
octavia-dashboard@e216ff9fd3 Update git submodules 2019-01-06 08:57:11 +00:00
octavia-lib@d045062aad Update git submodules based on new script 2019-01-04 14:13:17 +00:00
octavia-tempest-plugin@f3f25825c2 Update git submodules 2019-01-07 20:14:42 +00:00
odsreg@88b1770704 Update git submodules 2017-11-23 16:53:39 +00:00
openstack-ansible@bc17087ac2 Update git submodules based on new script 2019-01-04 14:13:17 +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@b644c90b89 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-galera_client@0906a82944 Update git submodules 2019-01-07 15:16:32 +00:00
openstack-ansible-galera_server@04f655f50c Update git submodules 2019-01-08 13:57:53 +00:00
openstack-ansible-haproxy_server@937fa0168d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-lxc_container_create@a14dcc8489 Update git submodules 2019-01-07 20:17:51 +00:00
openstack-ansible-lxc_hosts@0766e893ec Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-memcached_server@8bee77aba3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-nspawn_container_create@fe309dc0c9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-nspawn_hosts@144bf1ccd9 Update git submodules 2019-01-06 01:37:29 +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@7491b6df8e Update git submodules 2019-01-04 18:39:09 +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@966141ddcb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_barbican@0533fa085a Update git submodules based on new script 2019-01-04 14:13:17 +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@49ce3b57ea Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_cinder@5e7e1a7ea9 Update git submodules 2019-01-08 18:09:02 +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@b9d883443a Update git submodules based on new script 2019-01-04 14:13:17 +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@b8890c4841 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_gnocchi@c1ddbfb400 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_heat@a839cc1713 Update git submodules 2019-01-09 02:25:00 +00:00
openstack-ansible-os_horizon@b2b4f95c6b Update git submodules based on new script 2019-01-04 14:13:17 +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@7fc3f62c73 Update git submodules 2019-01-09 10:01:19 +00:00
openstack-ansible-os_magnum@c26da937d0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-os_manila@55094001b9 Update git submodules based on new script 2019-01-04 14:13:17 +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@931cf1ee89 Update git submodules 2019-01-08 13:51:49 +00:00
openstack-ansible-os_nova@64dc1747f5 Update git submodules based on new script 2019-01-04 14:13:17 +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@565c63a659 Update git submodules based on new script 2019-01-04 14:13:17 +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@25b5533c30 Update git submodules 2019-01-08 10:11:32 +00:00
openstack-ansible-os_trove@fb2e845256 Update git submodules based on new script 2019-01-04 14:13:17 +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@7fd6dd2112 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-ansible-rabbitmq_server@edb9b2e129 Update git submodules based on new script 2019-01-04 14:13:17 +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@fff6299ece Update git submodules 2019-01-07 18:55:50 +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@3e766d6c0a Update git submodules 2018-03-26 15:12:46 +00:00
openstack-health@3ea4787c88 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-helm@8935b24544 Update git submodules 2019-01-09 05:18:39 +00:00
openstack-helm-addons@fa705f1aaa Update git submodules 2019-01-08 06:52:46 +00:00
openstack-helm-docs@e30d0b7889 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
openstack-helm-images@86bafe3cc8 Update git submodules 2019-01-08 06:21:17 +00:00
openstack-helm-infra@f743caa254 Update git submodules 2019-01-09 06:16:01 +00:00
openstack-manuals@d7bda4db59 Update git submodules 2019-01-09 07:39:58 +00:00
openstack-nose@de9dcf85a0
openstack-planet@8816aea9ff Update git submodules 2018-03-09 13:42:40 +00:00
openstack-zuul-jobs@04be32adbe Update git submodules 2019-01-08 16:20:04 +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@1430d84470 Update git submodules 2019-01-07 14:35:16 +00:00
openstackid@3b1f9de37f Update git submodules 2018-04-20 19:08:38 +00:00
openstackid-resources@a33f002611 Update git submodules 2019-01-07 23:24:18 +00:00
openstacksdk@7f4b2b4068 Update git submodules 2019-01-08 18:34:46 +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@f58a59d09f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-apply-config@9124f56fac Update git submodules 2018-03-27 18:37:45 +00:00
os-brick@d7ebf977bb Update git submodules 2019-01-05 00:09:07 +00:00
os-client-config@ac5c313738 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-collect-config@7de2fd8444 Update git submodules 2018-04-16 19:32:04 +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@4f9c63652f Update git submodules 2018-03-28 22:29:51 +00:00
os-performance-tools@af948e1510 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-refresh-config@cf2d98460d Update git submodules 2018-03-15 17:16:10 +00:00
os-resource-classes@bffafeab58 Update git submodules 2019-01-07 19:07:08 +00:00
os-service-types@fb33d01882 Update git submodules 2019-01-07 09:13:20 +00:00
os-testr@381f52460d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-traits@9adb3e344a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-vif@91382aa943 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
os-win@3bbe2e4a50 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
osc-lib@aaf18dad8d Update git submodules based on new script 2019-01-04 14:13:17 +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@c2cace2299 Update git submodules 2018-04-23 14:28:50 +00:00
oslo.cache@eb68d734d3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.concurrency@e55a18c5e0 Update git submodules 2018-03-29 06:42:52 +00:00
oslo.config@85daf7a6eb Updated openstack/openstack 2017-09-12 20:49:39 +00:00
oslo.context@fd3b5f1ceb Update git submodules 2018-03-29 07:27:45 +00:00
oslo.db@f659198dfc Update git submodules 2018-03-29 06:42:49 +00:00
oslo.i18n@85693aaea9 Update git submodules 2018-03-29 06:50:58 +00:00
oslo.limit@a2674bbca3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.log@110191aa50 Update git submodules 2018-04-05 20:37:48 +00:00
oslo.messaging@344ec5e8bb Update git submodules 2019-01-07 18:01:34 +00:00
oslo.middleware@880f29d72e Update git submodules 2018-03-29 06:42:54 +00:00
oslo.policy@3d85afb24a Update git submodules 2019-01-08 14:39:09 +00:00
oslo.privsep@ecb1870c29 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.reports@3c71e50f0a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.rootwrap@cfc7838f8c Update git submodules 2018-04-05 14:39:50 +00:00
oslo.serialization@7d03e2d7e4 Update git submodules 2018-03-29 06:31:09 +00:00
oslo.service@d987a4a84c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.tools@ca098008e9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.upgradecheck@1dec43d612 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oslo.utils@380bf5a47e Update git submodules 2019-01-08 00:08:03 +00:00
oslo.versionedobjects@5774995c3c Update git submodules 2018-04-08 03:24:21 +00:00
oslo.vmware@a943629f85 Update git submodules 2018-03-29 06:52:57 +00:00
oslosphinx@5f70c35a0d Update git submodules 2018-02-05 16:11:27 +00:00
oslotest@bb78b84c3f Update git submodules 2018-04-02 10:58:18 +00:00
osprofiler@97564b644f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
oswin-tempest-plugin@a6a9a4a7eb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
ovsdbapp@0d44123973 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
panko@adb1d52ceb Update git submodules 2019-01-07 19:38:33 +00:00
patrole@89d5d18234 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
paunch@4e55596f71 Update git submodules 2019-01-07 14:02:30 +00:00
pbr@1a3b558117 Updated openstack/openstack 2017-09-12 20:57:55 +00:00
performance-docs@31b87219c8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
placement@289b44f5b4 Update git submodules 2019-01-04 17:40:24 +00:00
project-config@1c650ef2c7 Update git submodules 2019-01-09 07:51:50 +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 Updated openstack/openstack 2017-08-23 07:49:28 +00:00
puppet-aodh@3b3e6d632c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-apparmor@80a1265207 Updated openstack/openstack 2017-08-22 23:37:17 +00:00
puppet-askbot@7abbdafc62 Updated openstack/openstack 2017-08-22 23:37:11 +00:00
puppet-asterisk@b13391ded3 Updated openstack/openstack 2017-08-22 23:39:03 +00:00
puppet-bandersnatch@cac249d5d2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-barbican@93d5327948 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-bugdaystats@c7b8745591 Updated openstack/openstack 2017-08-22 23:33:06 +00:00
puppet-bup@013244fb40 Update git submodules 2017-11-02 06:22:33 +00:00
puppet-ceilometer@8453d0b67c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-ceph@39624dc0b5 Update git submodules 2019-01-08 09:30:47 +00:00
puppet-cgit@55c432baf6 Update git submodules 2018-03-27 23:37:05 +00:00
puppet-cinder@a8628dc884 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-ciwatch@540bfc49d8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-cloudkitty@686097f686 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-congress@4f1190bca2 Update git submodules based on new script 2019-01-04 14:13:17 +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@815772d7c2 Update git submodules based on new script 2019-01-04 14:13:17 +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@ded9032e4e Update git submodules based on new script 2019-01-04 14:13:17 +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@344ae1cfc9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-germqtt@e8f9800d5d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-gerrit@ed2a3a85ae Update git submodules 2018-04-20 18:53:26 +00:00
puppet-gerritbot@d434fd93d0 Update git submodules 2018-03-12 18:45:06 +00:00
puppet-github@30bbbfd58f Updated openstack/openstack 2017-08-22 22:14:05 +00:00
puppet-glance@f09800121b Update git submodules 2019-01-06 12:40:59 +00:00
puppet-glare@572a93dc34 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-gnocchi@d97528cd8c Update git submodules based on new script 2019-01-04 14:13:17 +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@5c5d1f6346 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-horizon@13ddfaf001 Update git submodules based on new script 2019-01-04 14:13:17 +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@204935198c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-jeepyb@a06b1ae633 Update git submodules 2018-02-02 11:54:19 +00:00
puppet-jenkins@7a9eafd698 Updated openstack/openstack 2017-09-05 18:10:51 +00:00
puppet-kerberos@4002c707ec Update git submodules 2017-12-15 23:59:34 +00:00
puppet-keystone@d60e02998a Update git submodules 2019-01-09 00:59:23 +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 Updated openstack/openstack 2017-08-23 00:51:40 +00:00
puppet-lpmqtt@ddd4542e56 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-magnum@3fe5edde19 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-mailman@74aabb8bbb Update git submodules 2018-02-12 17:16:55 +00:00
puppet-manila@082537eb75 Update git submodules 2019-01-04 22:19:57 +00:00
puppet-mediawiki@adec8d34f2 Updated openstack/openstack 2017-08-23 00:40:25 +00:00
puppet-meetbot@9cd6a4d6a0 Update git submodules 2018-05-01 12:20:42 +00:00
puppet-mistral@7e19a521c4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-monasca@31fe11595c Update git submodules based on new script 2019-01-04 14:13:17 +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@b5ecd39fd5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-mysql_backup@b306534ff9 Update git submodules 2018-05-01 12:19:54 +00:00
puppet-neutron@b8a49d3e08 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-nodepool@71fe2002e5 Update git submodules 2019-01-05 01:33:01 +00:00
puppet-nova@bf3d8bd91e Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-octavia@220a568a70 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openafs@13a3a763e9 Update git submodules 2018-02-18 23:58:41 +00:00
puppet-openstack-cookiecutter@909c6bc190 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack-guide@4da971500f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack-integration@22a04c2a10 Update git submodules 2019-01-08 12:57:57 +00:00
puppet-openstack-specs@d1a0b37aee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstack_extras@4d5ce9eab7 Update git submodules based on new script 2019-01-04 14:13:17 +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@6ec17c9a16 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstackci@20ae86a8f4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-openstackid@89890ae5ca Update git submodules 2018-04-30 15:38:51 +00:00
puppet-openstacklib@4dfc64e9d0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-os_client_config@f48bd2f36f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-oslo@77cf39a7ca Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-ovn@495ad9bc68 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-pacemaker@93482ade19 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-packagekit@2897ff7691 Updated openstack/openstack 2017-08-22 23:56:37 +00:00
puppet-panko@da40e284c0 Update git submodules based on new script 2019-01-04 14:13:17 +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@a59aecb4fa Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-planet@6d20d0feb7 Updated openstack/openstack 2017-08-23 00:40:19 +00:00
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@08d62670e7 Update git submodules 2019-01-07 05:58:58 +00:00
puppet-rally@56cee04ea4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-redis@3c653e5307 Updated openstack/openstack 2017-08-23 00:37:18 +00:00
puppet-refstack@e93d8f55ee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-reviewday@cb806fc80b Updated openstack/openstack 2017-08-23 00:36:01 +00:00
puppet-sahara@a57086f374 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-senlin@0e1d9e340d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-simpleproxy@f7de5af0f9 Updated openstack/openstack 2017-08-23 07:51:25 +00:00
puppet-snmpd@d804badd82 Update git submodules 2018-01-10 11:44:07 +00:00
puppet-ssh@685291c29e Updated openstack/openstack 2017-08-22 23:52:22 +00:00
puppet-ssl_cert_check@979573cec1 Updated openstack/openstack 2017-08-22 23:41:03 +00:00
puppet-stackalytics@52364b883a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-statusbot@3973ed99a2 Update git submodules 2018-01-26 04:31:44 +00:00
puppet-storyboard@8fd663a697 Update git submodules 2018-05-01 12:35:46 +00:00
puppet-subunit2sql@bb2f9fc027 Update git submodules 2018-05-01 12:31:14 +00:00
puppet-sudoers@ca25acebd5 Updated openstack/openstack 2017-08-22 23:47:47 +00:00
puppet-swift@769e6bdf83 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-tacker@4a5b47c89b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-tempest@decace898a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-tmpreaper@c6ca908936 Updated openstack/openstack 2017-08-22 23:46:56 +00:00
puppet-translation_checksite@b2fe5e04ec Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-tripleo@2127ee8acc Update git submodules 2019-01-08 23:22:05 +00:00
puppet-trove@36f42e96a7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-ulimit@5fa98cc809 Updated openstack/openstack 2017-08-22 23:41:15 +00:00
puppet-unattended_upgrades@825b3d68f5 Updated openstack/openstack 2017-08-22 23:47:42 +00:00
puppet-unbound@3c4dcf3d51 Updated openstack/openstack 2017-08-22 23:47:02 +00:00
puppet-user@fba7818b61 Updated openstack/openstack 2017-08-22 23:41:09 +00:00
puppet-vcsrepo@1b625245d6 Updated openstack/openstack 2017-08-22 22:10:01 +00:00
puppet-vitrage@006aef41bb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-vswitch@eeadacfdd9 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-watcher@343c73b407 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-yum@cfc3500aba Updated openstack/openstack 2017-08-22 23:39:40 +00:00
puppet-zanata@e1fb24b955 Update git submodules 2017-11-29 00:07:26 +00:00
puppet-zaqar@d13ecb9ce5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
puppet-zuul@dabe03d77f Update git submodules 2018-05-01 12:35:45 +00:00
pycadf@19583c041e Update git submodules 2018-02-08 23:15:23 +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@80cbf9906d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-barbicanclient@1b28235816 Update git submodules 2019-01-04 16:05:55 +00:00
python-blazarclient@3d5001cfa2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-brick-cinderclient-ext@4f3a0e6494 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-cinderclient@e40166740e Update git submodules 2019-01-08 21:16:13 +00:00
python-cloudkittyclient@dd1a421b7c Update git submodules 2019-01-07 10:27:51 +00:00
python-congressclient@6483c416ae Update git submodules based on new script 2019-01-04 14:13:17 +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@d3def5133d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-glanceclient@d158f1e75f Updated openstack/openstack 2017-09-13 17:53:44 +00:00
python-heatclient@8af5deb458 Update git submodules 2019-01-03 22:45:12 +00:00
python-ironic-inspector-client@7b051723e9 Update git submodules 2019-01-08 12:22:35 +00:00
python-ironicclient@1a9c706643 Update git submodules 2018-04-06 15:53:22 +00:00
python-karborclient@3216f64d14 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-keystoneclient@3f6f14d4fe Update git submodules 2019-01-03 21:24:05 +00:00
python-magnumclient@d41daca59b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-manilaclient@53da67c419 Update git submodules 2019-01-08 08:05:48 +00:00
python-masakariclient@44bb59f0e7 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-mistralclient@9d2adda87b Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-monascaclient@0b14b4d492 Update git submodules 2019-01-08 13:14:26 +00:00
python-muranoclient@bd38573528 Update git submodules 2019-01-05 04:34:31 +00:00
python-neutronclient@24f6f2df3b Updated openstack/openstack 2017-09-04 05:23:38 +00:00
python-novaclient@85e9b58e9b Update git submodules 2019-01-07 03:45:40 +00:00
python-octaviaclient@08f4a1fdd1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-openstackclient@39c00ab8b7 Updated openstack/openstack 2017-09-18 04:03:15 +00:00
python-pankoclient@0a27e534d8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-qinlingclient@b5d3383f38 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-saharaclient@1d5feee351 Update git submodules 2018-03-27 00:10:46 +00:00
python-searchlightclient@597eb9b1e4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-senlinclient@1c9e7078f3 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-solumclient@977717e756 Update git submodules 2019-01-05 04:05:55 +00:00
python-storyboardclient@940dd5c41e
python-swiftclient@3be8eca70b Updated openstack/openstack 2017-09-07 20:36:42 +00:00
python-tackerclient@71e0b047c8 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-tricircleclient@078ec0e8f0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-tripleoclient@9ef0a30584 Update git submodules 2019-01-08 23:54:46 +00:00
python-troveclient@463eab47e4 Update git submodules 2019-01-08 21:12:07 +00:00
python-vitrageclient@27c198c20b Update git submodules 2019-01-09 08:41:52 +00:00
python-watcherclient@2cfe7f9afc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
python-zaqarclient@a38a7ecb63 Update git submodules 2018-03-30 01:53:59 +00:00
python-zunclient@b328c351ba Update git submodules 2019-01-09 02:38:03 +00:00
qa-specs@146a24f326 Update git submodules 2018-02-20 09:20:03 +00:00
qinling@ebf3e6d106 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
qinling-dashboard@94b9a551e2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
rally@3a30fb9b42 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
rally-openstack@90fbbe3dab Update git submodules 2019-01-08 16:22:50 +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@ad44972a39 Update git submodules 2019-01-08 19:44:43 +00:00
renderspec@d9682e124f Update git submodules 2019-01-04 19:12: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@0594b9e71e Update git submodules 2019-01-09 08:05:02 +00:00
reviewday@1992485332 Update git submodules 2017-12-09 15:46:46 +00:00
reviewstats@548a85d2a9
rpm-packaging@50fb10c922 Update git submodules 2019-01-09 09:33:15 +00:00
rpm-packaging-tools@6139762c67 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
sahara@359b89de3f Update git submodules 2019-01-08 15:40:52 +00:00
sahara-dashboard@8bf9fbe04b Update git submodules 2018-01-10 18:55:15 +00:00
sahara-extra@dd99413cd3 Updated openstack/openstack 2017-08-03 14:43:40 +00:00
sahara-image-elements@2a0fa0d58b Update git submodules 2017-12-21 19:57:27 +00:00
sahara-specs@eafb655c21 Update git submodules 2018-05-03 16:01:09 +00:00
sahara-tests@d31d7311cb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
searchlight@60980460eb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
searchlight-specs@b429ca01c4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
searchlight-ui@f00bb6e2a2 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
senlin@125e403321 Update git submodules 2019-01-08 05:38:16 +00:00
senlin-dashboard@8519cde1e4 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
senlin-tempest-plugin@213ff3a590 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
shade@186dac6535 Update git submodules 2019-01-07 14:12:12 +00:00
solum@1e4e34abae Update git submodules 2019-01-09 05:43:44 +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@df862f4977 Update git submodules 2019-01-09 03:29:30 +00:00
specs-cookiecutter@5be6883fc1
sphinx-feature-classification@71ad629941 Update git submodules based on new script 2019-01-04 14:13:17 +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@6b294e45c9 Update git submodules 2019-01-09 09:15:06 +00:00
storyboard@c001d30625 Update git submodules 2018-04-30 23:21:35 +00:00
storyboard-webclient@8de425ba0c Update git submodules 2018-04-25 21:05:46 +00:00
subunit2sql@08222d7a2b Update git submodules 2018-04-23 19:33:26 +00:00
sushy@815da08998 Update git submodules 2019-01-08 14:20:14 +00:00
sushy-tools@ff4e7f4e33 Update git submodules 2019-01-09 03:48:22 +00:00
swift@b25c88eb25 Update git submodules 2019-01-09 03:02:22 +00:00
swift-bench@b69aab178b Update git submodules 2019-01-04 00:38:43 +00:00
swift-specs@e53112c271
system-config@7040063c1a Update git submodules 2019-01-07 21:51:05 +00:00
tacker@86c853a462 Update git submodules 2019-01-07 10:02:25 +00:00
tacker-horizon@ced45a20dd Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tacker-specs@75f13d31aa Update git submodules based on new script 2019-01-04 14:13:17 +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@af38fe56ee Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tempest@54d8f90496 Updated openstack/openstack 2017-09-15 22:19:31 +00:00
tempest-horizon@8e00d5de4b Update git submodules 2019-01-08 22:28:09 +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@b933cd6fd2 Update git submodules 2019-01-08 10:39:57 +00:00
tooz@824ff65433 Update git submodules 2018-02-26 01:30:23 +00:00
tosca-parser@8cd4546f22 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
training-guides@18418a5c58 Update git submodules 2018-05-02 09:28:18 +00:00
training-labs@70175beeaf Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tricircle@536a8067b1 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-ansible@e6ea28fb9f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-ci@fdbec66b77 Update git submodules 2019-01-08 21:55:51 +00:00
tripleo-common@7b16935015 Update git submodules 2019-01-09 01:55:01 +00:00
tripleo-common-tempest-plugin@028af44d3f Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-docs@617847f172 Update git submodules 2019-01-04 19:50:15 +00:00
tripleo-ha-utils@ebb6db142c Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-heat-templates@919aedcdf3 Update git submodules 2019-01-09 05:38:35 +00:00
tripleo-image-elements@a7679feb86 Update git submodules 2019-01-04 20:44:28 +00:00
tripleo-ipsec@8b37e93e53 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-puppet-elements@f7b34955dd Update git submodules 2018-02-07 06:15:56 +00:00
tripleo-quickstart@bd42718ae0 Update git submodules 2019-01-09 05:30:59 +00:00
tripleo-quickstart-extras@af3637d237 Update git submodules 2019-01-04 17:44:53 +00:00
tripleo-repos@a5b709edca Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-specs@e096440a79 Update git submodules 2018-04-16 17:53:29 +00:00
tripleo-ui@dbbfde4d9b Update git submodules 2019-01-08 15:24:49 +00:00
tripleo-upgrade@815846cddb Update git submodules based on new script 2019-01-04 14:13:17 +00:00
tripleo-validations@8c33fc69e0 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
trove@48d8a2e5a6 Update git submodules 2019-01-08 19:34:29 +00:00
trove-dashboard@145e78516c Update git submodules based on new script 2019-01-04 14:13:17 +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@6c37c501bd Update git submodules based on new script 2019-01-04 14:13:17 +00:00
vitrage@30383d2dea Update git submodules 2019-01-09 09:17:08 +00:00
vitrage-dashboard@76fc769341 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
vitrage-specs@72db2a2394 Update git submodules 2019-01-09 09:16:46 +00:00
vitrage-tempest-plugin@307b09bf9d Update git submodules based on new script 2019-01-04 14:13:17 +00:00
watcher@3a5966fb92 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
watcher-dashboard@6e493adbd5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
watcher-specs@599d4f031a Update git submodules based on new script 2019-01-04 14:13:17 +00:00
watcher-tempest-plugin@bcd715efb7 Update git submodules based on new script 2019-01-04 14:13:17 +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@22500e1025 Update git submodules based on new script 2019-01-04 14:13:17 +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@f26a3a348a Update git submodules based on new script 2019-01-04 14:13:17 +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@265fec1922 Update git submodules based on new script 2019-01-04 14:13:17 +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 Updated openstack/openstack 2017-08-03 10:42:49 +00:00
yaql@5a727ea9de Update git submodules based on new script 2019-01-04 14:13:17 +00:00
zaqar@2438c565d2 Update git submodules 2019-01-08 11:23:53 +00:00
zaqar-specs@210374edfe Update git submodules 2018-04-23 05:45:45 +00:00
zaqar-tempest-plugin@1eddb5ace5 Update git submodules based on new script 2019-01-04 14:13:17 +00:00
zaqar-ui@f307eaa198 Update git submodules 2019-01-09 09:29:25 +00:00
zmq-event-publisher@3ef6c4a112
zun@5ce01cacd3 Update git submodules 2019-01-07 08:55:15 +00:00
zun-tempest-plugin@24f8e847bc Update git submodules based on new script 2019-01-04 14:13:17 +00:00
zun-ui@d133f1a381 Update git submodules based on new script 2019-01-04 14:13:17 +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.