Replace git.openstack.org URLs with opendev.org URLs
Change-Id: I8241e8207c5caee7cb9c479bcca6196fedbc7fa3
This commit is contained in:
parent
aa0bda25ac
commit
d7142c04d2
@ -24,6 +24,6 @@ To get started with Tenks, see the documentation (linked below).
|
|||||||
|
|
||||||
* License: Apache License, Version 2.0
|
* License: Apache License, Version 2.0
|
||||||
* Documentation: https://docs.openstack.org/tenks/
|
* Documentation: https://docs.openstack.org/tenks/
|
||||||
* Source: https://git.openstack.org/cgit/openstack/tenks/
|
* Source: https://opendev.org/openstack/tenks/
|
||||||
* Bugs: https://storyboard.openstack.org/#!/project/openstack/tenks
|
* Bugs: https://storyboard.openstack.org/#!/project/openstack/tenks
|
||||||
* Known issues/limitations: refer to the documentation.
|
* Known issues/limitations: refer to the documentation.
|
||||||
|
@ -6,4 +6,4 @@ virtualenv_path: "{{ '/'.join([ansible_env['HOME'], 'tenks-venv']) }}"
|
|||||||
# The URL of the upper constraints file to pass to pip when installing Python
|
# The URL of the upper constraints file to pass to pip when installing Python
|
||||||
# packages.
|
# packages.
|
||||||
python_upper_constraints_url: >-
|
python_upper_constraints_url: >-
|
||||||
https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt
|
https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt
|
||||||
|
@ -53,7 +53,7 @@ Activate the virtualenv and update pip::
|
|||||||
|
|
||||||
Obtain the Tenks source code and change into the directory. For example::
|
Obtain the Tenks source code and change into the directory. For example::
|
||||||
|
|
||||||
(tenks) $ git clone https://git.openstack.org/openstack/tenks.git
|
(tenks) $ git clone https://opendev.org/openstack/tenks.git
|
||||||
(tenks) $ cd tenks
|
(tenks) $ cd tenks
|
||||||
|
|
||||||
Install Tenks and its requirements using the source code checkout::
|
Install Tenks and its requirements using the source code checkout::
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
# Variables shared between the playbooks
|
# Variables shared between the playbooks
|
||||||
|
|
||||||
tenks_src_dir: "{{ ansible_env.HOME ~ '/' ~ zuul.projects['git.openstack.org/openstack/tenks'].src_dir }}"
|
tenks_src_dir: "{{ ansible_env.HOME ~ '/' ~ zuul.projects['opendev.org/openstack/tenks'].src_dir }}"
|
||||||
upper_constraints_path: "{{ ansible_env.HOME ~ '/' ~ zuul.projects['git.openstack.org/openstack/requirements'].src_dir ~ '/upper-constraints.txt' }}"
|
upper_constraints_path: "{{ ansible_env.HOME ~ '/' ~ zuul.projects['opendev.org/openstack/requirements'].src_dir ~ '/upper-constraints.txt' }}"
|
||||||
tenks_venv: "{{ ansible_env.HOME ~ '/' ~ 'venv-tenks' }}"
|
tenks_venv: "{{ ansible_env.HOME ~ '/' ~ 'venv-tenks' }}"
|
||||||
config_dir: "{{ ansible_env.HOME ~ '/' ~ 'tenks-config' }}"
|
config_dir: "{{ ansible_env.HOME ~ '/' ~ 'tenks-config' }}"
|
||||||
tenks_overrides_path: "{{ config_dir ~ '/' ~ 'tenks-overrides.yml' }}"
|
tenks_overrides_path: "{{ config_dir ~ '/' ~ 'tenks-overrides.yml' }}"
|
||||||
|
8
tox.ini
8
tox.ini
@ -18,7 +18,7 @@ setenv =
|
|||||||
OS_STDERR_CAPTURE=1
|
OS_STDERR_CAPTURE=1
|
||||||
OS_TEST_TIMEOUT=60
|
OS_TEST_TIMEOUT=60
|
||||||
deps =
|
deps =
|
||||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt?h=stable/rocky}
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
commands =
|
commands =
|
||||||
@ -32,7 +32,7 @@ commands =
|
|||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
deps =
|
deps =
|
||||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt?h=stable/rocky}
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/doc/requirements.txt
|
-r{toxinidir}/doc/requirements.txt
|
||||||
commands = sphinx-build -W -b html doc/source doc/build/html
|
commands = sphinx-build -W -b html doc/source doc/build/html
|
||||||
@ -40,7 +40,7 @@ commands = sphinx-build -W -b html doc/source doc/build/html
|
|||||||
[testenv:venv]
|
[testenv:venv]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
deps =
|
deps =
|
||||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt?h=stable/rocky}
|
||||||
-r{toxinidir}/test-requirements.txt
|
-r{toxinidir}/test-requirements.txt
|
||||||
-r{toxinidir}/doc/requirements.txt
|
-r{toxinidir}/doc/requirements.txt
|
||||||
commands = {posargs}
|
commands = {posargs}
|
||||||
@ -71,7 +71,7 @@ commands = bash -c "ansible-lint \
|
|||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
deps =
|
deps =
|
||||||
-c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt?h=stable/rocky}
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
-r{toxinidir}/doc/requirements.txt
|
-r{toxinidir}/doc/requirements.txt
|
||||||
commands =
|
commands =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user