Finish updating links to point to opendev
The redirects work, but it's nicer to just use opendev links directly. Also, update shade, which is in openstack namespace now. Depends-On: https://review.opendev.org/654230 Depends-On: https://review.opendev.org/654233 Change-Id: Id559b79c2aefda50fa3ec0feedf6d8c52a687a75
This commit is contained in:
parent
f198347552
commit
737bcb0eca
@ -42,4 +42,4 @@ Code Hosting
|
|||||||
https://opendev.org/openstack/openstacksdk
|
https://opendev.org/openstack/openstacksdk
|
||||||
|
|
||||||
Code Review
|
Code Review
|
||||||
https://review.openstack.org/#/q/status:open+project:openstack/openstacksdk,n,z
|
https://review.opendev.org/#/q/status:open+project:openstack/openstacksdk,n,z
|
||||||
|
@ -156,7 +156,7 @@ Links
|
|||||||
=====
|
=====
|
||||||
|
|
||||||
* `Issue Tracker <https://storyboard.openstack.org/#!/project/openstack/openstacksdk>`_
|
* `Issue Tracker <https://storyboard.openstack.org/#!/project/openstack/openstacksdk>`_
|
||||||
* `Code Review <https://review.openstack.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
|
* `Code Review <https://review.opendev.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
|
||||||
* `Documentation <https://docs.openstack.org/openstacksdk/latest/>`_
|
* `Documentation <https://docs.openstack.org/openstacksdk/latest/>`_
|
||||||
* `PyPI <https://pypi.org/project/openstacksdk/>`_
|
* `PyPI <https://pypi.org/project/openstacksdk/>`_
|
||||||
* `Mailing list <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-discuss>`_
|
* `Mailing list <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-discuss>`_
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# To enable openstacksdk in devstack add an entry to local.conf that looks like
|
# To enable openstacksdk in devstack add an entry to local.conf that looks like
|
||||||
#
|
#
|
||||||
# [[local|localrc]]
|
# [[local|localrc]]
|
||||||
# enable_plugin openstacksdk https://git.openstack.org/openstack/openstacksdk
|
# enable_plugin openstacksdk https://opendev.org/openstack/openstacksdk
|
||||||
|
|
||||||
function preinstall_openstacksdk {
|
function preinstall_openstacksdk {
|
||||||
:
|
:
|
||||||
|
@ -15,4 +15,4 @@ List Zones
|
|||||||
|
|
||||||
Full example: `dns resource list`_
|
Full example: `dns resource list`_
|
||||||
|
|
||||||
.. _dns resource list: http://git.openstack.org/cgit/openstack/openstacksdk/tree/examples/dns/list.py
|
.. _dns resource list: https://opendev.org/openstack/openstacksdk/src/branch/master/examples/dns/list.py
|
||||||
|
@ -45,7 +45,7 @@ What are we going to talk about?
|
|||||||
shade is Free Software
|
shade is Free Software
|
||||||
======================
|
======================
|
||||||
|
|
||||||
* https://opendev.org/openstack-infra/shade
|
* https://opendev.org/openstack/shade
|
||||||
* openstack-discuss@lists.openstack.org
|
* openstack-discuss@lists.openstack.org
|
||||||
* #openstack-shade on freenode
|
* #openstack-shade on freenode
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
- name: Set openstacksdk libraries to master branch before functional tests
|
- name: Set openstacksdk libraries to master branch before functional tests
|
||||||
command: git checkout master
|
command: git checkout master
|
||||||
args:
|
args:
|
||||||
chdir: "src/git.openstack.org/{{ item }}"
|
chdir: "src/opendev.org/{{ item }}"
|
||||||
with_items:
|
with_items:
|
||||||
- openstack-infra/shade
|
- openstack/shade
|
||||||
- openstack/keystoneauth
|
- openstack/keystoneauth
|
||||||
- openstack/os-client-config
|
- openstack/os-client-config
|
||||||
|
6
tox.ini
6
tox.ini
@ -18,7 +18,7 @@ setenv =
|
|||||||
OS_STDOUT_CAPTURE={env:OS_STDOUT_CAPTURE:true}
|
OS_STDOUT_CAPTURE={env:OS_STDOUT_CAPTURE:true}
|
||||||
OS_STDERR_CAPTURE={env:OS_STDERR_CAPTURE:true}
|
OS_STDERR_CAPTURE={env:OS_STDERR_CAPTURE:true}
|
||||||
deps =
|
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}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
commands = stestr run {posargs}
|
commands = stestr run {posargs}
|
||||||
@ -78,14 +78,14 @@ commands = {toxinidir}/extras/run-ansible-tests.sh -e {envdir} {posargs}
|
|||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
deps =
|
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}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/doc/requirements.txt
|
-r{toxinidir}/doc/requirements.txt
|
||||||
commands = sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
|
commands = sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
|
||||||
|
|
||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
deps =
|
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}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/doc/requirements.txt
|
-r{toxinidir}/doc/requirements.txt
|
||||||
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||||||
|
Loading…
Reference in New Issue
Block a user