Switch to opendev URLs

Change URLs to use opendev instead of openstack.

Change-Id: I9bbd64615a689efba3a20d5f9d10bdb178c68ef4
This commit is contained in:
Andreas Jaeger 2020-02-23 16:43:23 +01:00
parent 1242f74497
commit 7f7e515de6
7 changed files with 10 additions and 11 deletions

View File

@ -9,7 +9,7 @@ Grenade is written in POSIX shell script. It specifies BASH and is
compatible with Bash 3.
Grenade's official repository is located at
https://git.openstack.org/cgit/openstack-dev/grenade.
https://opendev.org/openstack/grenade.
Scripts

View File

@ -226,7 +226,7 @@ Note: For using this with ``openstack-infra/devstack-gate`` you would set this
by setting the GRENADE_PLUGINRC environment variable. For example to set it for
Ironic::
export GRENADE_PLUGINRC="enable_grenade_plugin ironic https://git.openstack.org/openstack/ironic"
export GRENADE_PLUGINRC="enable_grenade_plugin ironic https://opendev.org/openstack/ironic"
Changing Devstack Localrc

View File

@ -157,7 +157,7 @@ Install Grenade
Get Grenade from GitHub in the usual way::
git clone https://git.openstack.org/openstack-dev/grenade
git clone https://opendev.org/openstack/grenade
Optional: running grenade against a remote target
-------------------------------------------------

View File

@ -28,7 +28,7 @@ PROJECTS+="openstack/tempest "
PROJECTS+="openstack/neutron "
PROJECTS+="openstack/ceilometer "
PROJECTS+="openstack/horizon "
PROJECTS+="openstack-dev/devstack "
PROJECTS+="openstack/devstack "
PROJECTS+="kanaka/noVNC "
function usage {

View File

@ -11,7 +11,7 @@ fi
# Base GIT Repo URL
# Another option is http://review.openstack.org/p
# Another option is https://github.com
GIT_BASE=${GIT_BASE:-https://git.openstack.org}
GIT_BASE=${GIT_BASE:-https://opendev.org}
#GIT_BASE=/opt/git
# Destination path for installation ``STACK_ROOT``
@ -26,7 +26,7 @@ TARGET_RELEASE=${TARGET_RELEASE:-new}
TARGET_RELEASE_DIR=${STACK_ROOT}/$TARGET_RELEASE
# DevStack sources
BASE_DEVSTACK_REPO=$GIT_BASE/openstack-dev/devstack.git
BASE_DEVSTACK_REPO=$GIT_BASE/openstack/devstack
BASE_DEVSTACK_BRANCH=${BASE_DEVSTACK_BRANCH:-stable/train}
BASE_DEVSTACK_DIR=${BASE_DEVSTACK_DIR:-$BASE_RELEASE_DIR/devstack}

View File

@ -12,7 +12,7 @@
SRC_DIR=$(cd $(dirname "$0") && pwd)
# Set up some defaults if grenaderc is not present
GRENADE_REPO=https://git.openstack.org/openstack-dev/grenade
GRENADE_REPO=https://opendev.org/openstack/grenade
GRENADE_DIR=${STACK_ROOT}/grenade
GRENADE_BRANCH=master

View File

@ -28,9 +28,8 @@
# * the environment variable git_dir pointing to the location
# * of said git repositories
# ) OR (
# * network access to the review.openstack.org Gerrit API
# working directory
# * network access to https://git.openstack.org/cgit
# * network access to the review.opendev.org Gerrit API
# * network access to https://opendev.org/
# ))
#
# If a file named data/grenade-plugins-registry.header or
@ -49,7 +48,7 @@ sorted_plugins=$(python tools/generate-grenade-plugins-list.py)
for k in ${sorted_plugins}; do
project=${k:0:40}
giturl="https://git.openstack.org/openstack/${k:0:36}"
giturl="https://opendev.org/openstack/${k:0:36}"
printf "|%-40s|%-73s|\n" "${project}" "${giturl}"
printf "+----------------------------------------+-------------------------------------------------------------------------+\n"
done