- 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.
-
- 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: I2b24cee0fc01b2cd875430009d9e773386a29e5b
-
- 07 Nov, 2018 1 commit
-
-
Zuul authored
-
- 31 Oct, 2018 1 commit
-
-
Akihiro Motoki authored
After https://review.openstack.org/#/c/524406/ landed, we need to register L3 opts before initializing router info. Change-Id: I2017be0e9ca069abfdd1c5250bc06b3b4109fa83 Closes-Bug: #1760320 (cherry picked from commit e10993c9) (cherry picked from commit 01b9cd4b)
-
- 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: I89f39409a6f9e8facac5c8db6999c51d8b875474 Story: #2002586 Task: #24314
-
- 02 May, 2018 1 commit
-
-
eeldill 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. Pep8 job is broken due to recent pep8 upgrade and corresponding pycodestyle update. This commit fixes the following errors: - E731 do not assign a lambda expression, use a def - W503 line break before binary operator - E402 module level import not at top of file Change-Id: I55879d70f05de60a423176e5bf1803758f27c691
-
- 23 Aug, 2017 1 commit
-
-
YAMAMOTO Takashi authored
Change-Id: Ifc3844d462c5c0995eb46ce7f181e8d4ac696b82
-
- 11 Aug, 2017 2 commits
-
-
YAMAMOTO Takashi authored
Change-Id: Ie80b7f82fdc8cfafe8950a1c7d40923f8a0143ce
-
YAMAMOTO Takashi authored
Change-Id: Ic003940bbcaebfcd830191cb24a023e16b1dbdc5
-
- 27 Jul, 2017 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ib9a97ae7b1ca31caae56c97e06631e96eaa5e10a
-
- 23 Jul, 2017 1 commit
-
-
Zhenmei authored
Depends-On: Id3fd4da7e4dd4cac4eb2e32024c0d8242b85a0bb Change-Id: Iecd22b4c33287b05ac9b14e8c1f1a8435d87f8df Co-Authored-By:Roey Chen <roeyc@vmware.com>
-
- 21 Jul, 2017 2 commits
-
-
Cao Xuan Hoang authored
Some of the available checks are disabled by default, like: [H106] Don't put vim configuration in source files [H203] Use assertIs(Not)None to check for None [H904] Delay string interpolations at logging calls Change-Id: I7450cd259fffa2a97fcb28cc61727532478eeccb
-
Jenkins authored
-
- 20 Jul, 2017 3 commits
- 19 Jul, 2017 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ib32f0e283b87d0ae5dfcb9927c72a85a6f19dd35
-
- 18 Jul, 2017 1 commit
-
-
Luong Anh Tuan authored
Function 'tempest.test.attr()' has moved to 'tempest.lib.decorators .attr()' in Pike and will be removed in a future version. This patch replaces the 'tempest.test.attr()' with the 'tempest.lib .decorators.attr().' Change-Id: Ia1ed973398e801dfb5f46e172515dbf520ce4c43
-
- 17 Jul, 2017 1 commit
-
-
Cao Xuan Hoang authored
TrivialFix Change-Id: Ifbd95e182b8d462751481dda8bdd559b928f5f63
-
- 14 Jul, 2017 1 commit
-
-
melissaml authored
Change-Id: I3fd980bc5dfb24adb73ac46270b1296e26c65eac
-
- 13 Jul, 2017 1 commit
-
-
Hunt Xu authored
* adds new attribute 'flavor_id' for vpnservice * adds support for multiple drivers for VPNaaS This solution uses a flavor of service type VPN associated with a flavor profile containing a driver. During vpnservice creation, if a flavor_id is passed, it is used to find the provider for the driver which would handle the newly created vpnservice. The flavor_id and the provider-vpnservice association are pesisted in the DB. ApiImpact and DocImpact tags are added as the new optional flavor_id parameter should be described, as well as the support of multiple VPNaaS drivers. The original work and discussion about integrating VPNaaS and service type framework can be found in the following change: I9e195dfaee21b1cf204cb9b9fc773bc9e5af5936 ApiImpact DocImpact Closes-Bug: #1672920 Signed-off-by:Hunt Xu <mhuntxu@gmail.com> Change-Id: I0095e160481f1d4572e38ad1d3bbc8e183039b84
-
- 11 Jul, 2017 1 commit
-
-
Cao Xuan Hoang authored
1. In reviews we usually check import grouping but it is boring. By using flake8-import-order plugin, we can avoid this. It enforces loose checking so it sounds good to use it. This flake8 plugin is already used in tempest. Note that flake8-import-order version is pinned to avoid unexpected breakage of pep8 job. Setup for unit tests of hacking rules is tweaked to disable flake8-import-order checks. This extension assumes an actual file exists and causes hacking rule unit tests. 2. This patch is also intend to clean up exceptions to avoid confusing for other developers and the maintenance-ability as well. Change-Id: I032892f08e073feb5b822d27d092f041b17d57e1
-
- 30 Jun, 2017 9 commits
-
-
OpenStack Proposal Bot authored
Change-Id: If330041ee3684ba64c29f1bce8e12566d2c58a91
-
Jenkins authored
-
Jenkins authored
-
Jenkins authored
-
Jenkins authored
-
Jenkins authored
-
Van Hung Pham authored
Update link address to ensure safety and preciseness Change-Id: I96b27a0d8a7a0d48b4301392ea9490ef5a6b82b1
-
Arundhati Surpur authored
neutron-vpnaas already uses PBR:- setuptools.setup( setup_requires=['pbr>=1.8'], pbr=True) This patch removes `MANIFEST.in` file as pbr generates a sensible manifest from git files and some standard files and it removes the need for an explicit `MANIFEST.in` file. Change-Id: I1c7992cc13e5210f93e15a96b8151be679acee1f
-
Van Hung Pham authored
As part of the docs migration work[0] for Pike we need to switch to use the openstackdocstheme. [0]https://review.openstack.org/#/c/472275/ Change-Id: Icb985379c263d7d06544d69bae11282a18a7fc52
-
- 27 Jun, 2017 1 commit
-
-
Boden R authored
The well known service type constants are in neutron_lib.plugins.constants, but for legacy reasons a few still exist and are referenced from neutron_lib.constants [1] that we'd like to remove. This patch switches references over to neutron_lib's plugin constants. [1] https://github.com/openstack/neutron-lib/blob/master/neutron_lib/constants.py#L353 Change-Id: Ib44f6fb67a1232eceb300e0c8c65b9beb0a899af
-
- 19 Jun, 2017 1 commit
-
-
Cao Xuan Hoang authored
The 'message' attribute has been deprecated and removed from Python3. For more details, please check: https://www.python.org/dev/peps/pep-0352/ Change-Id: I030ae143808d7cbe5e2d03b5347cc6edc3c9eb6e
-
- 09 Jun, 2017 1 commit
-
-
Cao Xuan Hoang authored
I would like to add myself as a maintainer for strongswan driver as I am currently using and focusing on it. In order to share workload with Kong as he is in-charging for 2 drivers. Change-Id: I6ff26ef34520e9f8711503b7589c37bdbc32ca39
-
- 07 Jun, 2017 1 commit
-
-
xiaoli authored
The termination of the IPSec connection process requires router's netns presence to execute successfully, so the IPSec connection deletion should be executed before the router is deleted, rather than the router deletion. Closes-Bug: #1696684 Change-Id: Ia5b3576c0a53647ee273d025f1f8893348ccc6c0
-
- 31 May, 2017 1 commit
-
-
Jenkins authored
-
- 29 May, 2017 1 commit
-
-
Cao Xuan Hoang authored
Change-Id: If768bb26683870491d6414168213e40a95832ec6
-
- 25 May, 2017 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I1c41cded669fc9dfb1d1f3dcb7318a00b66676ff
-
- 17 May, 2017 2 commits