- 29 Sep, 2019 1 commit
-
-
Andreas Jaeger authored
The release-notes-jobs template is setup already, remove indvidual jobs - they are redundant. This is a partial backport of I5fbf32b52ec6a5878761e23a5aee592e8c516bca, it is needed to cleanup the Zuul jobs. Change-Id: I4589871c7482c8c317c323d9e886169ab8018bd2 (cherry picked from commit dfe50a56c2c882254e332ce62220051725a970b1)
-
- 12 Jul, 2019 1 commit
-
-
Előd Illés authored
As it was announced [1] global bindep-fallback.txt was removed and now projects need to have a local bindep.txt to be able to install binary dependencies for testing. [1] http://lists.openstack.org/pipermail/openstack-discuss/2019-June/007272.html Change-Id: I2187f0e63d366fe7d174d0f86bb548535e9eef49 (cherry picked from commit 3f1a317d) (cherry picked from commit 2aaccf0d) (cherry picked from commit a6037ee5e4acda4e330d0b92df5fabc75540ec68) (cherry picked from commit 6deaf578e8f780c90b92a7cdf391eabc9d4a7520)
-
- 23 Apr, 2019 1 commit
-
-
Andreas Jaeger authored
This is a job that runs only on master and it stayed in project-config. It should not have been imported here as part of python3-first topic, remove it again. Change-Id: Id1ddf79100d83f665b62b1ef73ed8689a2afd3bb (cherry picked from commit 21df6d54)
-
- 19 Apr, 2019 1 commit
-
-
OpenDev Sysadmins authored
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
-
- 17 Apr, 2019 1 commit
-
-
Akihiro Motoki authored
The releases repo added a validation for PyPI meta files. The command line is "python3 setup.py check --restructuredtext --strict". Violation is found in README.rst in networking-bagpipe and it blocks the release process. All references in README.rst need to work only with README file. Change-Id: I647ed8a15cbe6ac60272d21db18602bf2d1eea41 (cherry picked from commit 2d2f61c8) (cherry picked from commit f3a7c421)
-
- 24 Mar, 2019 1 commit
-
-
Ian Wienand authored
This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: I16f931f07d8da1fd970d7abf9176fa528e4b601f
-
- 29 Aug, 2018 1 commit
-
-
Doug Hellmann authored
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: Iee9df8847c76d6a4775a40be08268285773cfa9d Story: #2002586 Task: #24314
-
- 19 Jun, 2018 1 commit
-
-
Előd Illés authored
build-openstack-sphinx-docs jobs fail on stable branches due to the new pip version 10 introduces some previously Warning as Error: in case of calling "pip install" without any package name, the command fails. tox_install.sh is called during docs job without any package passed to pip. Change-Id: Ic910eed43c3b56dadbdcf120f2f6f9c491ab7bc7 (cherry picked from commit cceffa3f)
-
- 24 Jan, 2018 1 commit
-
-
Thomas Morin authored
Fix a how instance ids are allocated, to ensure that two VPN instance do not end up using the same id. Yes, this is appalling. Change-Id: I474834340751d05ae33b6eb8404511e23f110598 Closes-Bug: 1745145 (cherry picked from commit 3af0e228)
-
- 06 Sep, 2017 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Iaca1d5c4f10e17a6fe0de70cff46fdf9e5ed5088
-
- 18 Aug, 2017 2 commits
- 12 Aug, 2017 6 commits
- 11 Aug, 2017 7 commits
-
-
OpenStack Release Bot authored
Change-Id: Iba96896f645468a0e1526404338d1c59fbd91f10
-
Thomas Morin authored
Until exabgp 4.0.3 is out and in openstack requirements, we need to workaround exabgp issue #690 [1]. This change will be reverted once useless. [1] https://github.com/Exa-Networks/exabgp/issues/690 Change-Id: If3584816e429eec82105196378d2f7f1b1d24065 Closes-bug: 1709820 (cherry picked from commit 831ccda7)
-
Thomas Morin authored
Change-Id: I901aec9495713891f78742d362e5500cc043477c (cherry picked from commit 1a8d973b)
-
Thomas Morin authored
This change fixes bug 1705477 in a way that works for both exabgp 4.0.1 and 4.0.2+, since upgrading global requirements to exabgp 4.0.2 does not seem justified, but we still want code that will work with both. Change-Id: I0d008814d978b74292416ac59d5e8fd970303935 Closes-Bug: 1705477 (cherry picked from commit 71315e8a)
-
Thomas Morin authored
* add support for OVS-2.8 evolution to support plain MPLS/GRE (instead of the MPLS-over-Ethernet-over-GRE that OVS is doing by default) * add a corresponding fullstack test Change-Id: I784ad0ab1acab8d773510a575aaef75cee46cc3c (cherry picked from commit 6931a8a9)
-
Thomas Morin authored
The code was iterating over a dict keys and in the same loop adding/removing records in the same dict. This is (a) not a good idea in the first place and (b) the cause for bug #1703382. It only shows up under python3, because dict.keys() is a view in python 3. What remains obscure to me is that this code was *not* causing Python to complain with a "RuntimeError: dictionary changed size during iteration'" exception. This change fixes the code to avoid using an iterator for keys, and also update the corresponding unit test, for style only. Change-Id: I377e0449242c9495f237b52c26fe91f6b6b739f8 Closes-Bug: 1703382 (cherry picked from commit 0c47f3ec)
-
Thomas Morin authored
point to stable/pike branch Change-Id: Ia19c1e11905bbc32576aa68a9df6862c6edd06c8
-
- 10 Aug, 2017 2 commits
- 09 Aug, 2017 1 commit
-
-
Thomas Morin authored
Change-Id: Ie2bc2286f4ac824f11580dbb6aa6cdcb5b7edfbe
-
- 08 Aug, 2017 1 commit
-
-
Thomas Morin authored
Original code for integrating br-mpls and br-tun was using two patch ports, one for each direction of traffic, to work around the fact that OVS/Openflow has a check to prevent sending a packet back from the port via which it came in. We weren't aware of a simpler solution provided by OVS to workaround this check, consisting in zeroing the value of in_port with "load:0->NXM_OF_IN_PORT[]". (see http://docs.openvswitch.org/en/latest/faq/openflow/ "Q: I added a flow to send packets out the ingress port...") This change implements this simpler workaround to avoid the hassle and complexity of yet another patch port. Change-Id: I3defa9ec2cb85a6f0c902086970c6c3bf9ecd14e
-
- 07 Aug, 2017 2 commits
-
-
Thomas Morin authored
This reverts commit 9df432f0. Change-Id: Icb41448176c790e8035a201cf2bcb6a54dfc4606
-
Thomas Morin authored
Do a proper re-raise preserving the stacktrace, instead of a raise of the previous exception. Without this, an exception raise in the dataplane driver is logged without its stacktrace. Change-Id: I475e709fa27ef8c31dcd2b9fde22928892af3a57
-
- 02 Aug, 2017 2 commits
- 27 Jul, 2017 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I953b9672260d76733f836d26023a6e8485df1b09
-
- 24 Jul, 2017 1 commit
-
-
Jenkins authored
-
- 23 Jul, 2017 2 commits
-
-
Akihiro Motoki authored
oslo.config provides sphinx extensions to generate config reference and sample config files. This commit enables the auto-generation of the networking config reference. Part of doc-migration work Change-Id: I0c82027d7be2ff1f2c0e96c41e0c38ad07208daa
-
Akihiro Motoki authored
Auto-generation of configuration files is part of the community-wide doc-migration effort in Pike. networking-bagpipe does not support it, so this commit sets up the config file autogeneration. Note that lower case is used as config group names as oslo.config suggests to do so and oslo.config sphinx extensions expects to use lower cases (otherwise it emits warnings). Change-Id: I69abd82cd5e422ec2d52f8d82e45a141c05bdb6a
-
- 21 Jul, 2017 2 commits
-
-
Jenkins authored
-
Hong Hui Xiao authored
patched_format defines different parameter list than exabgp.logger.Logger._format. This cause error when the log message needs to be formatted. Change-Id: I9fab9c2d856672e315d02e3c1d3f079cc16c078c Closes-Bug: #1705477
-
- 20 Jul, 2017 1 commit
-
-
chenxing authored
Change-Id: I2c3f919b5ea77bb056c1f8cb1be1a3a985f4969b
-