Replace git.openstack.org with opendev.org
Change-Id: I6b802e49a3342bd624df1f7d855911ffe3b2eaa7
This commit is contained in:
parent
8fbd944cd5
commit
88d20578df
@ -6,7 +6,7 @@ Legacy Init Script for Ubuntu 14.04
|
||||
|
||||
.. 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:
|
||||
|
||||
|
@ -4,12 +4,12 @@ RABBIT_PASSWORD=password
|
||||
SERVICE_TOKEN=password
|
||||
SERVICE_PASSWORD=password
|
||||
ADMIN_PASSWORD=password
|
||||
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH
|
||||
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH
|
||||
enable_plugin kuryr-libnetwork https://git.openstack.org/openstack/kuryr-libnetwork $TARGET_BRANCH
|
||||
enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container $TARGET_BRANCH
|
||||
enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
|
||||
enable_plugin kuryr-libnetwork https://opendev.org/openstack/kuryr-libnetwork $TARGET_BRANCH
|
||||
|
||||
#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
|
||||
#services to use nova docker driver
|
||||
|
@ -20,7 +20,7 @@ then
|
||||
echo "Download devstack into $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"
|
||||
|
||||
|
@ -5,24 +5,24 @@ RABBIT_PASSWORD=password
|
||||
SERVICE_TOKEN=password
|
||||
SERVICE_PASSWORD=password
|
||||
ADMIN_PASSWORD=password
|
||||
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH
|
||||
enable_plugin zun-tempest-plugin https://git.openstack.org/openstack/zun-tempest-plugin
|
||||
enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
|
||||
enable_plugin zun-tempest-plugin https://opendev.org/openstack/zun-tempest-plugin
|
||||
|
||||
#This below plugin enables installation of container engine on Devstack.
|
||||
#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,
|
||||
# but we must change it to `global` in the multinode scenario.
|
||||
KURYR_CAPABILITY_SCOPE=global
|
||||
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
|
||||
LIBS_FROM_GIT="python-zunclient"
|
||||
|
||||
# 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
|
||||
# enable_plugin heat https://git.openstack.org/openstack/heat $TARGET_BRANCH
|
||||
# enable_plugin heat https://opendev.org/openstack/heat $TARGET_BRANCH
|
||||
|
@ -5,12 +5,12 @@ RABBIT_PASSWORD=password
|
||||
SERVICE_TOKEN=password
|
||||
SERVICE_PASSWORD=password
|
||||
ADMIN_PASSWORD=password
|
||||
enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container $TARGET_BRANCH
|
||||
enable_plugin zun https://git.openstack.org/openstack/zun $TARGET_BRANCH
|
||||
enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container $TARGET_BRANCH
|
||||
enable_plugin zun https://opendev.org/openstack/zun $TARGET_BRANCH
|
||||
|
||||
KURYR_CAPABILITY_SCOPE=global
|
||||
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
|
||||
MULTI_HOST=True
|
||||
|
@ -39,14 +39,14 @@ On the second host, clone devstack::
|
||||
$ sudo mkdir -p /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
|
||||
support. You also need to tell devstack where the SERVICE_HOST is::
|
||||
|
||||
$ SERVICE_HOST=<controller's 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 \
|
||||
| sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \
|
||||
| sed "s/SERVICE_HOST=.*/SERVICE_HOST=$SERVICE_HOST/" \
|
||||
|
@ -22,13 +22,13 @@ Clone devstack::
|
||||
# Create a root directory for devstack if needed
|
||||
$ sudo mkdir -p /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
|
||||
required OpenStack services::
|
||||
|
||||
$ 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 \
|
||||
| sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \
|
||||
> /opt/stack/devstack/local.conf
|
||||
|
@ -25,7 +25,7 @@ Zun source code should be pulled directly from git::
|
||||
|
||||
# from your home or source directory
|
||||
cd ~
|
||||
git clone https://git.openstack.org/openstack/zun
|
||||
git clone https://opendev.org/openstack/zun
|
||||
cd zun
|
||||
|
||||
Install the prerequisite packages listed in the ``bindep.txt`` file.
|
||||
|
@ -72,7 +72,7 @@ Install and configure components
|
||||
.. code-block:: console
|
||||
|
||||
# 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
|
||||
# cd zun
|
||||
# pip install -r requirements.txt
|
||||
|
@ -190,7 +190,7 @@ Install and configure components
|
||||
.. code-block:: console
|
||||
|
||||
# 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
|
||||
# cd zun
|
||||
# pip install -r requirements.txt
|
||||
|
Loading…
Reference in New Issue
Block a user