From dace47cc07a02d2418e67a8abe3ad23a01cabb74 Mon Sep 17 00:00:00 2001 From: gujin Date: Sat, 11 May 2019 15:55:20 +0800 Subject: [PATCH] Replace git.openstack.org URLs with opendev.org URLs Change-Id: Ied57440e9e9f918ca685bd3738716cd52f7719b2 --- CONTRIBUTING.rst | 2 +- HACKING.rst | 2 +- README.rst | 6 +++--- TESTING.rst | 2 +- devstack/README.rst | 8 ++++---- doc/source/admin/bgp-speaker.rst | 4 ++-- doc/source/admin/route-advertisement.rst | 2 +- doc/source/contributor/dragent-drivers.rst | 2 +- doc/source/contributor/testing.rst | 4 ++-- neutron_dynamic_routing/tests/contrib/gate_hook.sh | 2 +- tox.ini | 4 ++-- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index a2bf07e7..1fa491f0 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,4 +1,4 @@ Please see the Neutron CONTRIBUTING.rst file for how to contribute to neutron-dynamic-routing: -`Neutron CONTRIBUTING.rst `_ +`Neutron CONTRIBUTING.rst `_ diff --git a/HACKING.rst b/HACKING.rst index 276b17c8..3ac57d7b 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -4,4 +4,4 @@ Neutron Dynamic Routing Style Commandments Please see the Neutron HACKING.rst file for style commandments for neutron-dynamic-routing: -`Neutron HACKING.rst `_ +`Neutron HACKING.rst `_ diff --git a/README.rst b/README.rst index 2d9a859c..c8cf4726 100644 --- a/README.rst +++ b/README.rst @@ -16,11 +16,11 @@ The homepage for Neutron is: https://launchpad.net/neutron. Use this site for asking for help, and filing bugs. We use a single launchpad page for all Neutron projects. -Code is available on git.openstack.org at: -https://git.openstack.org/cgit/openstack/neutron-dynamic-routing +Code is available on opendev.org at: +https://opendev.org/openstack/neutron-dynamic-routing Refer to Neutron documentation for more information: -`Neutron README.rst `_ +`Neutron README.rst `_ Release notes for the project can be found at: https://docs.openstack.org/releasenotes/neutron-dynamic-routing/ diff --git a/TESTING.rst b/TESTING.rst index 62ccf8f6..b27992f0 100644 --- a/TESTING.rst +++ b/TESTING.rst @@ -5,4 +5,4 @@ Please see the TESTING.rst file for the Neutron project itself. This will have the latest up to date instructions for how to test Neutron, and will be applicable to neutron-dynamic-routing as well: -`Neutron TESTING.rst `_ +`Neutron TESTING.rst `_ diff --git a/devstack/README.rst b/devstack/README.rst index b746721d..6e48686b 100644 --- a/devstack/README.rst +++ b/devstack/README.rst @@ -4,7 +4,7 @@ 1. Download devstack:: - git clone https://git.openstack.org/openstack-dev/devstack.git + git clone https://opendev.org/openstack/devstack.git 2. Add neutron-dynamic-routing to devstack. The minimal set of critical local.conf additions are following:: @@ -12,7 +12,7 @@ cd devstack cat << EOF > local.conf > [[local|localrc]] - > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing > EOF 3. run devstack:: @@ -26,7 +26,7 @@ Notes: cd devstack cat << EOF > local.conf > [[local|localrc]] - > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing > DR_MODE=dr_plugin > EOF @@ -34,7 +34,7 @@ Notes: cd devstack cat << EOF > local.conf > [[local|localrc]] - > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing + > enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing > DR_MODE=dr_agent > EOF diff --git a/doc/source/admin/bgp-speaker.rst b/doc/source/admin/bgp-speaker.rst index 81181626..fa24f60e 100644 --- a/doc/source/admin/bgp-speaker.rst +++ b/doc/source/admin/bgp-speaker.rst @@ -40,7 +40,7 @@ For details refer to `Route advertisement <./route-advertisement.html>`_. Address Scopes -------------- -`Address scopes `_ +`Address scopes `_ provide flexible control as well as decoupling of address overlap from tenancy, so this kind control can provide a routable domain, the domain has itself route and no overlap address, it means an address scope define "a L3 routing domain". @@ -120,7 +120,7 @@ A Sample Quagga router configuration file forming BGP peering with Neutron: BGP Speaker Architecture ------------------------ Dynamic routing project saves BGP Speaker configuration as per the defined -`data model `_. +`data model `_. and pass on the configuration request to the dynamic routing agent for further processing. The implementation of a BGP Speaker is driver specific. During the driver interface initialization process, needed configurations are read from the configuration file diff --git a/doc/source/admin/route-advertisement.rst b/doc/source/admin/route-advertisement.rst index 8252ed0e..5ad43722 100644 --- a/doc/source/admin/route-advertisement.rst +++ b/doc/source/admin/route-advertisement.rst @@ -113,4 +113,4 @@ callbacks does this work. You could get the advertisement routes of specific BGP Speaker like: ``neutron bgp-speaker-advertiseroute-list `` It does a complicated db query to generate the list of advertised routes. -For more details refer to `route advertisement db lookup `_ +For more details refer to `route advertisement db lookup `_ diff --git a/doc/source/contributor/dragent-drivers.rst b/doc/source/contributor/dragent-drivers.rst index 5e5aac63..8313af76 100644 --- a/doc/source/contributor/dragent-drivers.rst +++ b/doc/source/contributor/dragent-drivers.rst @@ -75,7 +75,7 @@ Common Driver API ----------------- Common Driver API is needed to provide a generic and consistent interface to different drivers. Each driver need to implement the provided -`base driver class `_. +`base driver class `_. BGP diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst index d170a2e4..93aab296 100644 --- a/doc/source/contributor/testing.rst +++ b/doc/source/contributor/testing.rst @@ -74,12 +74,12 @@ Devstack Setup 1. Download devstack:: - git clone https://git.openstack.org/openstack-dev/devstack.git + git clone https://opendev.org/openstack/devstack.git 2. Enable neutron-dynamic-routing by including this in your local.conf file:: [[local|localrc]] - enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing + enable_plugin neutron-dynamic-routing https://opendev.org/openstack/neutron-dynamic-routing 3. Run devstack:: diff --git a/neutron_dynamic_routing/tests/contrib/gate_hook.sh b/neutron_dynamic_routing/tests/contrib/gate_hook.sh index d5991ad6..13192859 100644 --- a/neutron_dynamic_routing/tests/contrib/gate_hook.sh +++ b/neutron_dynamic_routing/tests/contrib/gate_hook.sh @@ -102,7 +102,7 @@ then source $NEUTRON_PATH/devstack/lib/ovs source $NEUTRON_PATH/tools/configure_for_func_testing.sh - enable_plugin $PROJECT_NAME https://git.openstack.org/openstack/$PROJECT_NAME + enable_plugin $PROJECT_NAME https://opendev.org/openstack/$PROJECT_NAME # Make the workspace owned by the stack user sudo chown -R $STACK_USER:$STACK_USER $BASE diff --git a/tox.ini b/tox.ini index 7360d0a9..62cf5f21 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ setenv = VIRTUAL_ENV={envdir} PYTHONWARNINGS=default::DeprecationWarning usedevelop = True install_command =pip install {opts} {packages} -deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} +deps = -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt whitelist_externals = @@ -136,7 +136,7 @@ deps = # run locally (not in the gate) using editable mode # https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs commands = - pip install -q -e "git+https://git.openstack.org/openstack/neutron#egg=neutron" + pip install -q -e "git+https://opendev.org/openstack/neutron#egg=neutron" [testenv:py3-dev] basepython = python3