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. compatible with Bash 3.
Grenade's official repository is located at Grenade's official repository is located at
https://git.openstack.org/cgit/openstack-dev/grenade. https://opendev.org/openstack/grenade.
Scripts 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 by setting the GRENADE_PLUGINRC environment variable. For example to set it for
Ironic:: 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 Changing Devstack Localrc

View File

@ -157,7 +157,7 @@ Install Grenade
Get Grenade from GitHub in the usual way:: 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 Optional: running grenade against a remote target
------------------------------------------------- -------------------------------------------------

View File

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

View File

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

View File

@ -12,7 +12,7 @@
SRC_DIR=$(cd $(dirname "$0") && pwd) SRC_DIR=$(cd $(dirname "$0") && pwd)
# Set up some defaults if grenaderc is not present # 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_DIR=${STACK_ROOT}/grenade
GRENADE_BRANCH=master GRENADE_BRANCH=master

View File

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