Replace git.openstack.org URLs with opendev.org URLs

Change-Id: I2cd4e71d53e37345da36f5f77efa7b506b74297b
This commit is contained in:
jacky06 2019-04-23 13:04:43 +08:00
parent 29abfb3cb8
commit 8cf8db2fa2
5 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ A common library for TripleO workflows.
* Free software: Apache license * Free software: Apache license
* Documentation: https://docs.openstack.org/tripleo-common/latest/ * Documentation: https://docs.openstack.org/tripleo-common/latest/
* Source: http://git.openstack.org/cgit/openstack/tripleo-common * Source: http://opendev.org/openstack/tripleo-common
* Bugs: https://bugs.launchpad.net/tripleo-common * Bugs: https://bugs.launchpad.net/tripleo-common
* Release notes: https://docs.openstack.org/releasenotes/tripleo-common * Release notes: https://docs.openstack.org/releasenotes/tripleo-common
@ -68,7 +68,7 @@ Prerequisites
If you haven't installed the undercloud with the ``enable_validations`` set to If you haven't installed the undercloud with the ``enable_validations`` set to
true, you will have to prepare your undercloud to run the validations:: true, you will have to prepare your undercloud to run the validations::
$ sudo pip install git+https://git.openstack.org/openstack/tripleo-validations $ sudo pip install git+https://opendev.org/openstack/tripleo-validations
$ sudo yum install ansible $ sudo yum install ansible
$ sudo useradd validations $ sudo useradd validations

View File

@ -845,7 +845,7 @@ container_images_template:
- OS::TripleO::Services::SwiftStorage - OS::TripleO::Services::SwiftStorage
# The kolla tacker image was split into base, conductor and server images in # The kolla tacker image was split into base, conductor and server images in
# kolla review https://review.openstack.org/#/c/477494/ # kolla review https://review.opendev.org/#/c/477494/
# Uncomment when TripleO has caught up with the change. # Uncomment when TripleO has caught up with the change.
# https://bugs.launchpad.net/tripleo/+bug/1714270 # https://bugs.launchpad.net/tripleo/+bug/1714270
# - imagename: "{{namespace}}/{{name_prefix}}tacker{{name_suffix}}:{{tag}}" # - imagename: "{{namespace}}/{{name_prefix}}tacker{{name_suffix}}:{{tag}}"

View File

@ -634,8 +634,8 @@ RUN mkdir -p /openstack && \
{% endblock %} {% endblock %}
# workaround for LP #1814233 # workaround for LP #1814233
# Review https://review.openstack.org/#/c/634365/ # Review https://review.opendev.org/#/c/634365/
# Remove when https://review.openstack.org/#/c/634402/ is merged # Remove when https://review.opendev.org/#/c/634402/ is merged
{% set rabbitmq_packages_remove = ['rabbitmq-server-3.7.10'] %} {% set rabbitmq_packages_remove = ['rabbitmq-server-3.7.10'] %}
{% set rabbitmq_packages_append = [ {% set rabbitmq_packages_append = [
'rabbitmq-server', 'pacemaker', 'pacemaker-remote', 'pcs', 'libqb', 'resource-agents'] %} 'rabbitmq-server', 'pacemaker', 'pacemaker-remote', 'pcs', 'libqb', 'resource-agents'] %}

View File

@ -106,7 +106,7 @@ for module in $MODULES; do
git pull git pull
popd > /dev/null popd > /dev/null
elif ! [ -d $module ]; then elif ! [ -d $module ]; then
git clone https://git.openstack.org/openstack/puppet-$module $module git clone https://opendev.org/openstack/puppet-$module $module
else else
echo "$module already exists and will not be updated" echo "$module already exists and will not be updated"
fi fi

View File

@ -7,7 +7,7 @@ skipsdist = True
usedevelop = True usedevelop = True
install_command = pip install {opts} {packages} install_command = pip install {opts} {packages}
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}/test-requirements.txt -r{toxinidir}/test-requirements.txt
commands = stestr run {posargs} commands = stestr run {posargs}