Replace git.openstack.org with opendev.org

Change-Id: I6b802e49a3342bd624df1f7d855911ffe3b2eaa7
This commit is contained in:
inspurericzhang 2019-11-19 15:24:07 +08:00 committed by Hongbin Lu
parent 8fbd944cd5
commit 88d20578df
10 changed files with 22 additions and 22 deletions

View File

@ -6,7 +6,7 @@ Legacy Init Script for Ubuntu 14.04
.. code-block:: console .. code-block:: console
$ git clone https://git.openstack.org/openstack/zun.git $ git clone https://opendev.org/openstack/zun.git
#. Enable and start zun-api: #. Enable and start zun-api:

View File

@ -4,12 +4,12 @@ RABBIT_PASSWORD=password
SERVICE_TOKEN=password SERVICE_TOKEN=password
SERVICE_PASSWORD=password SERVICE_PASSWORD=password
ADMIN_PASSWORD=password ADMIN_PASSWORD=password
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container $TARGET_BRANCH
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
enable_plugin kuryr-libnetwork https://git.openstack.org/openstack/kuryr-libnetwork $TARGET_BRANCH enable_plugin kuryr-libnetwork https://opendev.org/openstack/kuryr-libnetwork $TARGET_BRANCH
#Optional: uncomment to enable the Zun UI plugin in Horizon #Optional: uncomment to enable the Zun UI plugin in Horizon
#enable_plugin zun-ui https://git.openstack.org/openstack/zun-ui $TARGET_BRANCH #enable_plugin zun-ui https://opendev.org/openstack/zun-ui $TARGET_BRANCH
#Uncomment below variables and enable nova and neutron #Uncomment below variables and enable nova and neutron
#services to use nova docker driver #services to use nova docker driver

View File

@ -20,7 +20,7 @@ then
echo "Download devstack into $DEVSTACK" echo "Download devstack into $DEVSTACK"
# clone devstack # clone devstack
su "$OS_USER" -c "cd && git clone -b master https://git.openstack.org/openstack-dev/devstack.git $DEVSTACK" su "$OS_USER" -c "cd && git clone -b master https://opendev.org/openstack/devstack.git $DEVSTACK"
echo "Copy configuration" echo "Copy configuration"

View File

@ -5,24 +5,24 @@ RABBIT_PASSWORD=password
SERVICE_TOKEN=password SERVICE_TOKEN=password
SERVICE_PASSWORD=password SERVICE_PASSWORD=password
ADMIN_PASSWORD=password ADMIN_PASSWORD=password
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
enable_plugin zun-tempest-plugin https://git.openstack.org/openstack/zun-tempest-plugin enable_plugin zun-tempest-plugin https://opendev.org/openstack/zun-tempest-plugin
#This below plugin enables installation of container engine on Devstack. #This below plugin enables installation of container engine on Devstack.
#The default container engine is Docker #The default container engine is Docker
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container $TARGET_BRANCH
# In Kuryr, KURYR_CAPABILITY_SCOPE is `local` by default, # In Kuryr, KURYR_CAPABILITY_SCOPE is `local` by default,
# but we must change it to `global` in the multinode scenario. # but we must change it to `global` in the multinode scenario.
KURYR_CAPABILITY_SCOPE=global KURYR_CAPABILITY_SCOPE=global
KURYR_PROCESS_EXTERNAL_CONNECTIVITY=False KURYR_PROCESS_EXTERNAL_CONNECTIVITY=False
enable_plugin kuryr-libnetwork https://git.openstack.org/openstack/kuryr-libnetwork $TARGET_BRANCH enable_plugin kuryr-libnetwork https://opendev.org/openstack/kuryr-libnetwork $TARGET_BRANCH
# install python-zunclient from git # install python-zunclient from git
LIBS_FROM_GIT="python-zunclient" LIBS_FROM_GIT="python-zunclient"
# Optional: uncomment to enable the Zun UI plugin in Horizon # Optional: uncomment to enable the Zun UI plugin in Horizon
# enable_plugin zun-ui https://git.openstack.org/openstack/zun-ui $TARGET_BRANCH # enable_plugin zun-ui https://opendev.org/openstack/zun-ui $TARGET_BRANCH
# Optional: uncomment to enable the Heat plugin for container orchestration # Optional: uncomment to enable the Heat plugin for container orchestration
# enable_plugin heat https://git.openstack.org/openstack/heat $TARGET_BRANCH # enable_plugin heat https://opendev.org/openstack/heat $TARGET_BRANCH

View File

@ -5,12 +5,12 @@ RABBIT_PASSWORD=password
SERVICE_TOKEN=password SERVICE_TOKEN=password
SERVICE_PASSWORD=password SERVICE_PASSWORD=password
ADMIN_PASSWORD=password ADMIN_PASSWORD=password
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container $TARGET_BRANCH
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
KURYR_CAPABILITY_SCOPE=global KURYR_CAPABILITY_SCOPE=global
KURYR_PROCESS_EXTERNAL_CONNECTIVITY=False KURYR_PROCESS_EXTERNAL_CONNECTIVITY=False
enable_plugin kuryr-libnetwork https://git.openstack.org/openstack/kuryr-libnetwork $TARGET_BRANCH enable_plugin kuryr-libnetwork https://opendev.org/openstack/kuryr-libnetwork $TARGET_BRANCH
# Following is for multi host settings # Following is for multi host settings
MULTI_HOST=True MULTI_HOST=True

View File

@ -39,14 +39,14 @@ On the second host, clone devstack::
$ sudo mkdir -p /opt/stack $ sudo mkdir -p /opt/stack
$ sudo chown $USER /opt/stack $ sudo chown $USER /opt/stack
$ git clone https://git.openstack.org/openstack-dev/devstack /opt/stack/devstack $ git clone https://opendev.org/openstack/devstack /opt/stack/devstack
The second host will only need zun-compute service along with kuryr-libnetwork The second host will only need zun-compute service along with kuryr-libnetwork
support. You also need to tell devstack where the SERVICE_HOST is:: support. You also need to tell devstack where the SERVICE_HOST is::
$ SERVICE_HOST=<controller's ip> $ SERVICE_HOST=<controller's ip>
$ HOST_IP=<your ip> $ HOST_IP=<your ip>
$ git clone https://git.openstack.org/openstack/zun /opt/stack/zun $ git clone https://opendev.org/openstack/zun /opt/stack/zun
$ cat /opt/stack/zun/devstack/local.conf.subnode.sample \ $ cat /opt/stack/zun/devstack/local.conf.subnode.sample \
| sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \ | sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \
| sed "s/SERVICE_HOST=.*/SERVICE_HOST=$SERVICE_HOST/" \ | sed "s/SERVICE_HOST=.*/SERVICE_HOST=$SERVICE_HOST/" \

View File

@ -22,13 +22,13 @@ Clone devstack::
# Create a root directory for devstack if needed # Create a root directory for devstack if needed
$ sudo mkdir -p /opt/stack $ sudo mkdir -p /opt/stack
$ sudo chown $USER /opt/stack $ sudo chown $USER /opt/stack
$ git clone https://git.openstack.org/openstack-dev/devstack /opt/stack/devstack $ git clone https://opendev.org/openstack/devstack /opt/stack/devstack
We will run devstack with minimal local.conf settings required to enable We will run devstack with minimal local.conf settings required to enable
required OpenStack services:: required OpenStack services::
$ HOST_IP=<your ip> $ HOST_IP=<your ip>
$ git clone https://git.openstack.org/openstack/zun /opt/stack/zun $ git clone https://opendev.org/openstack/zun /opt/stack/zun
$ cat /opt/stack/zun/devstack/local.conf.sample \ $ cat /opt/stack/zun/devstack/local.conf.sample \
| sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \ | sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \
> /opt/stack/devstack/local.conf > /opt/stack/devstack/local.conf

View File

@ -25,7 +25,7 @@ Zun source code should be pulled directly from git::
# from your home or source directory # from your home or source directory
cd ~ cd ~
git clone https://git.openstack.org/openstack/zun git clone https://opendev.org/openstack/zun
cd zun cd zun
Install the prerequisite packages listed in the ``bindep.txt`` file. Install the prerequisite packages listed in the ``bindep.txt`` file.

View File

@ -72,7 +72,7 @@ Install and configure components
.. code-block:: console .. code-block:: console
# cd /var/lib/zun # cd /var/lib/zun
# git clone https://git.openstack.org/openstack/zun.git # git clone https://opendev.org/openstack/zun.git
# chown -R zun:zun zun # chown -R zun:zun zun
# cd zun # cd zun
# pip install -r requirements.txt # pip install -r requirements.txt

View File

@ -190,7 +190,7 @@ Install and configure components
.. code-block:: console .. code-block:: console
# cd /var/lib/zun # cd /var/lib/zun
# git clone https://git.openstack.org/openstack/zun.git # git clone https://opendev.org/openstack/zun.git
# chown -R zun:zun zun # chown -R zun:zun zun
# cd zun # cd zun
# pip install -r requirements.txt # pip install -r requirements.txt