diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 0d8be2b..0bad404 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -11,6 +11,6 @@ the workflow documented at: Pull requests submitted through GitHub will be ignored. -Bugs should be filed as stories on StoryBoard, not in GitHub's issue tracker: +Bugs should be filed in Launchpad: - https://storyboard.openstack.org/#!/project/openstack/cinderlib + https://bugs.launchpad.net/cinderlib diff --git a/devstack/README.rst b/devstack/README.rst index 2c93237..318f054 100644 --- a/devstack/README.rst +++ b/devstack/README.rst @@ -17,11 +17,11 @@ where:: For example:: - enable_plugin cinderlib https://git.openstack.org/openstack/cinderlib + enable_plugin cinderlib https://opendev.org/openstack/cinderlib -Another example using Stein's stable branch:: +Another example using Train's stable branch:: - enable_plugin cinderlib https://git.openstack.org/openstack/cinderlib stable/stein + enable_plugin cinderlib https://opendev.org/openstack/cinderlib stable/train The cinderlib DevStack plugin will install cinderlib from Git by default, but it can be installed from PyPi using the ``CINDERLIB_FROM_GIT`` configuration diff --git a/doc/source/topics/backends.rst b/doc/source/topics/backends.rst index 2543aba..62aa43d 100644 --- a/doc/source/topics/backends.rst +++ b/doc/source/topics/backends.rst @@ -59,7 +59,7 @@ volume driver configuration documentation`_. Python library dependencies are usually documented in the `driver-requirements.txt file - `_, + `_, as for the CLI required tools, we'll have to check in the Vendor's documentation. diff --git a/tox.ini b/tox.ini index ecd62dd..f299f6c 100644 --- a/tox.ini +++ b/tox.ini @@ -16,8 +16,8 @@ install_command = pip install {opts} {packages} # dependencies (include Cinder in required-projects). This allows us to also # run local tests against master. deps= -r{toxinidir}/test-requirements.txt - git+https://git.openstack.org/openstack/os-brick#egg=os-brick - git+https://git.openstack.org/openstack/cinder#egg=cinder + git+https://opendev.org/openstack/os-brick#egg=os-brick + git+https://opendev.org/openstack/cinder#egg=cinder commands = find . -ignore_readdir_race -type f -name "*.pyc" -delete @@ -68,14 +68,14 @@ whitelist_externals = {[testenv:functional]whitelist_externals} # envdir = {toxworkdir}/docs basepython = python3 deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/doc/requirements.txt commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [testenv:docs] basepython = python3 deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/doc/requirements.txt commands = doc8 --ignore D001 --ignore-path .tox --ignore-path *.egg-info --ignore-path doc/build --ignore-path .eggs/*/EGG-INFO/*.txt -e txt -e rst