From 6b58a1b58ee36db180254de0d48f8747596769ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dulko?= Date: Wed, 26 Jun 2019 17:57:01 +0200 Subject: [PATCH] Replace git.openstack.org with opendev.org in URLs Change-Id: I1909cf75595fd9da7dfb1481478756711e9bb06c --- README.rst | 2 +- contrib/devstack-heat/hot/node.yaml | 4 ++-- contrib/devstack-heat/lib/devstack-heat | 2 +- contrib/vagrant/README.md | 2 +- devstack/local.conf.df.sample | 10 +++++----- devstack/local.conf.odl.sample | 8 ++++---- devstack/local.conf.openshift.sample | 8 ++++---- devstack/local.conf.ovn.sample | 10 +++++----- devstack/local.conf.pod-in-vm.overcloud.sample | 4 ++-- devstack/local.conf.pod-in-vm.undercloud.df.sample | 8 ++++---- devstack/local.conf.pod-in-vm.undercloud.odl.sample | 4 ++-- devstack/local.conf.pod-in-vm.undercloud.ovn.sample | 8 ++++---- devstack/local.conf.pod-in-vm.undercloud.sample | 4 ++-- devstack/local.conf.sample | 8 ++++---- devstack/local.conf.worker.sample | 4 ++-- doc/source/installation/devstack/basic.rst | 6 +++--- .../installation/devstack/dragonflow_support.rst | 6 +++--- doc/source/installation/devstack/odl_support.rst | 6 +++--- doc/source/installation/devstack/ovn_support.rst | 6 +++--- doc/source/installation/manual.rst | 4 ++-- tox.ini | 2 +- 21 files changed, 58 insertions(+), 58 deletions(-) diff --git a/README.rst b/README.rst index 8d81861d5..4d5d37bf8 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ require it or to use different segments and, for example, route between them. * Free software: Apache license * Documentation: https://docs.openstack.org/kuryr-kubernetes/latest -* Source: https://git.openstack.org/cgit/openstack/kuryr-kubernetes +* Source: https://opendev.org/openstack/kuryr-kubernetes * Bugs: https://bugs.launchpad.net/kuryr-kubernetes * Overview and demo: https://superuser.openstack.org/articles/networking-kubernetes-kuryr * Release notes: https://docs.openstack.org/releasenotes/kuryr-kubernetes/ diff --git a/contrib/devstack-heat/hot/node.yaml b/contrib/devstack-heat/hot/node.yaml index f79ec7b2b..9ddab2c13 100644 --- a/contrib/devstack-heat/hot/node.yaml +++ b/contrib/devstack-heat/hot/node.yaml @@ -112,7 +112,7 @@ resources: echo "Finding latest ref for change ${change_number}" ref=$(curl -s "https://review.openstack.org/changes/${change_number}?o=CURRENT_REVISION" | tail -n +2 | jq -r '.revisions[].ref') echo "Fetching ref ${ref}" - git fetch https://git.openstack.org/openstack/kuryr-kubernetes "${ref}" && git checkout FETCH_HEAD + git fetch https://opendev.org/openstack/kuryr-kubernetes "${ref}" && git checkout FETCH_HEAD } function get_from_sha() { @@ -124,7 +124,7 @@ resources: } cd /opt/stack - git clone https://git.openstack.org/openstack-dev/devstack + git clone https://opendev.org/openstack-dev/devstack git clone https://github.com/openstack/kuryr-kubernetes pushd kuryr-kubernetes diff --git a/contrib/devstack-heat/lib/devstack-heat b/contrib/devstack-heat/lib/devstack-heat index 73985c7db..8652582d8 100644 --- a/contrib/devstack-heat/lib/devstack-heat +++ b/contrib/devstack-heat/lib/devstack-heat @@ -55,7 +55,7 @@ function _generate_deployment_name() { set -e (>&2 echo "Didn't find a Github token in ENV var DEVSTACK_HEAT_GH_TOKEN. Falling back to cloning repo...") tmpdir=$(mktemp -d) - git clone --depth 1 https://git.openstack.org/openstack/kuryr-kubernetes "${tmpdir}/kuryr-kubernetes" > /dev/null + git clone --depth 1 https://opendev.org/openstack/kuryr-kubernetes "${tmpdir}/kuryr-kubernetes" > /dev/null pushd "${tmpdir}/kuryr-kubernetes" > /dev/null latest_commit=$(git rev-parse HEAD) popd > /dev/null diff --git a/contrib/vagrant/README.md b/contrib/vagrant/README.md index 71f518168..badd2a209 100644 --- a/contrib/vagrant/README.md +++ b/contrib/vagrant/README.md @@ -62,7 +62,7 @@ Vagrant provisioning. For example, to use OVN as the Neutron plugin with Kuryr, you can create a "user_local.conf" with the following configuration: - enable_plugin networking-ovn https://git.openstack.org/openstack/networking-ovn + enable_plugin networking-ovn https://opendev.org/openstack/networking-ovn enable_service ovn-northd enable_service ovn-controller disable_service q-agt diff --git a/devstack/local.conf.df.sample b/devstack/local.conf.df.sample index a0382b3a7..f546aedd8 100644 --- a/devstack/local.conf.df.sample +++ b/devstack/local.conf.df.sample @@ -1,9 +1,9 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes -enable_plugin dragonflow https://git.openstack.org/openstack/dragonflow +enable_plugin dragonflow https://opendev.org/openstack/dragonflow # If you do not want stacking to clone new versions of the enabled services, # like for example when you did local modifications and need to ./unstack.sh @@ -58,7 +58,7 @@ DF_SELECTIVE_TOPO_DIST=False # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -67,7 +67,7 @@ enable_service o-hk ## Octavia Deps ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta @@ -86,7 +86,7 @@ enable_service g-reg # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Etcd # ==== diff --git a/devstack/local.conf.odl.sample b/devstack/local.conf.odl.sample index 245b3a525..8b158fa0f 100644 --- a/devstack/local.conf.odl.sample +++ b/devstack/local.conf.odl.sample @@ -1,7 +1,7 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes # If you do not want stacking to clone new versions of the enabled services, # like for example when you did local modifications and need to ./unstack.sh @@ -33,7 +33,7 @@ enable_service q-svc # LBaaSv2 service and Haproxy agent enable_plugin neutron-lbaas \ - https://git.openstack.org/openstack/neutron-lbaas + https://opendev.org/openstack/neutron-lbaas enable_service q-lbaasv2 # Currently there is problem with the ODL LBaaS driver integration, so we @@ -54,7 +54,7 @@ ODL_TIMEOUT=60 ODL_V2DRIVER=True ODL_NETVIRT_DEBUG_LOGS=True EBTABLES_RACE_FIX=True -enable_plugin networking-odl http://git.openstack.org/openstack/networking-odl +enable_plugin networking-odl http://opendev.org/openstack/networking-odl # Keystone enable_service key @@ -69,7 +69,7 @@ enable_service rabbit # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Etcd diff --git a/devstack/local.conf.openshift.sample b/devstack/local.conf.openshift.sample index 4f2ce0900..1445ac0e0 100644 --- a/devstack/local.conf.openshift.sample +++ b/devstack/local.conf.openshift.sample @@ -1,7 +1,7 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes # If you do not want stacking to clone new versions of the enabled services, # like for example when you did local modifications and need to ./unstack.sh @@ -39,7 +39,7 @@ enable_service q-svc # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -48,7 +48,7 @@ enable_service o-hk ## Octavia Deps ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta @@ -75,7 +75,7 @@ enable_service rabbit # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Etcd # ==== diff --git a/devstack/local.conf.ovn.sample b/devstack/local.conf.ovn.sample index 1b555d084..197157df0 100644 --- a/devstack/local.conf.ovn.sample +++ b/devstack/local.conf.ovn.sample @@ -1,7 +1,7 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes # If you do not want stacking to clone new versions of the enabled services, # like for example when you did local modifications and need to ./unstack.sh @@ -27,7 +27,7 @@ IDENTITY_API_VERSION=3 ENABLED_SERVICES="" # OVN components -enable_plugin networking-ovn https://git.openstack.org/openstack/networking-ovn +enable_plugin networking-ovn https://opendev.org/openstack/networking-ovn enable_service ovn-northd enable_service ovn-controller enable_service networking-ovn-metadata-agent @@ -64,7 +64,7 @@ VAR_RUN_PATH=/usr/local/var/run # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -73,7 +73,7 @@ enable_service o-hk ## Octavia Deps ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta @@ -100,7 +100,7 @@ enable_service rabbit # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Etcd # ==== diff --git a/devstack/local.conf.pod-in-vm.overcloud.sample b/devstack/local.conf.pod-in-vm.overcloud.sample index a0bb571ba..9c48722d5 100644 --- a/devstack/local.conf.pod-in-vm.overcloud.sample +++ b/devstack/local.conf.pod-in-vm.overcloud.sample @@ -3,7 +3,7 @@ RECLONE="no" enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes OFFLINE="no" LOGFILE=devstack.log @@ -31,7 +31,7 @@ KURYR_NEUTRON_DEFAULT_SUBNETPOOL_ID=UNDERCLOUD_SUBNETPOOL_V4_ID # Include the router to use. You can use the one from the default undercloud devstack KURYR_NEUTRON_DEFAULT_ROUTER=router1 -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container enable_service etcd3 enable_service kubernetes-api enable_service kubernetes-controller-manager diff --git a/devstack/local.conf.pod-in-vm.undercloud.df.sample b/devstack/local.conf.pod-in-vm.undercloud.df.sample index a6c008d51..f1edc522f 100644 --- a/devstack/local.conf.pod-in-vm.undercloud.df.sample +++ b/devstack/local.conf.pod-in-vm.undercloud.df.sample @@ -11,7 +11,7 @@ ADMIN_PASSWORD=pass MULTI_HOST=1 # Dragonflow plugin and services -enable_plugin dragonflow https://git.openstack.org/openstack/dragonflow +enable_plugin dragonflow https://opendev.org/openstack/dragonflow enable_service df-controller enable_service df-redis enable_service df-redis-server @@ -32,7 +32,7 @@ disable_service q-dhcp # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -49,7 +49,7 @@ enable_service o-hk # OCTAVIA_AMP_IMAGE_NAME=test-only-amphora-x64-haproxy-ubuntu-xenial ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta @@ -65,7 +65,7 @@ enable_service g-reg IMAGE_URLS+=",http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img" # Enable heat services if you want to deploy overcloud using Heat stack -enable_plugin heat https://git.openstack.org/openstack/heat +enable_plugin heat https://opendev.org/openstack/heat enable_service h-eng h-api h-api-cfn h-api-cw disable_service tempest diff --git a/devstack/local.conf.pod-in-vm.undercloud.odl.sample b/devstack/local.conf.pod-in-vm.undercloud.odl.sample index a54f6a1bd..7f7f009f2 100644 --- a/devstack/local.conf.pod-in-vm.undercloud.odl.sample +++ b/devstack/local.conf.pod-in-vm.undercloud.odl.sample @@ -45,7 +45,7 @@ enable_service g-reg ### Neutron-lbaas # LBaaSv2 service and Haproxy agent enable_plugin neutron-lbaas \ - https://git.openstack.org/openstack/neutron-lbaas + https://opendev.org/openstack/neutron-lbaas enable_service q-lbaasv2 # Currently there is problem with the ODL LBaaS driver integration, so we @@ -80,4 +80,4 @@ ODL_NETVIRT_DEBUG_LOGS=True Q_SERVICE_PLUGIN_CLASSES=trunk EBTABLES_RACE_FIX=True -enable_plugin networking-odl http://git.openstack.org/openstack/networking-odl +enable_plugin networking-odl http://opendev.org/openstack/networking-odl diff --git a/devstack/local.conf.pod-in-vm.undercloud.ovn.sample b/devstack/local.conf.pod-in-vm.undercloud.ovn.sample index a6a4bb136..961643efd 100644 --- a/devstack/local.conf.pod-in-vm.undercloud.ovn.sample +++ b/devstack/local.conf.pod-in-vm.undercloud.ovn.sample @@ -20,7 +20,7 @@ SERVICE_TOKEN=pass # Enable Keystone v3 IDENTITY_API_VERSION=3 -enable_plugin networking-ovn https://git.openstack.org/openstack/networking-ovn +enable_plugin networking-ovn https://opendev.org/openstack/networking-ovn enable_service ovn-northd enable_service ovn-controller enable_service networking-ovn-metadata-agent @@ -36,12 +36,12 @@ disable_service q-dhcp disable_service q-meta # Enable services, these services depend on neutron plugin. -enable_plugin neutron https://git.openstack.org/openstack/neutron +enable_plugin neutron https://opendev.org/openstack/neutron enable_service q-trunk # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -58,7 +58,7 @@ enable_service o-hk # OCTAVIA_AMP_IMAGE_NAME=test-only-amphora-x64-haproxy-ubuntu-xenial ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta diff --git a/devstack/local.conf.pod-in-vm.undercloud.sample b/devstack/local.conf.pod-in-vm.undercloud.sample index 19dea31a6..038a5b894 100644 --- a/devstack/local.conf.pod-in-vm.undercloud.sample +++ b/devstack/local.conf.pod-in-vm.undercloud.sample @@ -23,7 +23,7 @@ IDENTITY_API_VERSION=3 # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -40,7 +40,7 @@ enable_service o-hk # OCTAVIA_AMP_IMAGE_NAME=test-only-amphora-x64-haproxy-ubuntu-xenial ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta diff --git a/devstack/local.conf.sample b/devstack/local.conf.sample index 03eef3edc..d864c037a 100644 --- a/devstack/local.conf.sample +++ b/devstack/local.conf.sample @@ -1,7 +1,7 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes # If you do not want stacking to clone new versions of the enabled services, # like for example when you did local modifications and need to ./unstack.sh @@ -43,7 +43,7 @@ enable_service q-svc # Octavia LBaaSv2 LIBS_FROM_GIT+=python-octaviaclient -enable_plugin octavia https://git.openstack.org/openstack/octavia +enable_plugin octavia https://opendev.org/openstack/octavia enable_service octavia enable_service o-api enable_service o-cw @@ -60,7 +60,7 @@ enable_service o-hk # OCTAVIA_AMP_IMAGE_NAME=test-only-amphora-x64-haproxy-ubuntu-xenial ### Image ### Barbican -enable_plugin barbican https://git.openstack.org/openstack/barbican +enable_plugin barbican https://opendev.org/openstack/barbican ### Nova enable_service n-api enable_service n-api-meta @@ -87,7 +87,7 @@ enable_service rabbit # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Etcd # ==== diff --git a/devstack/local.conf.worker.sample b/devstack/local.conf.worker.sample index 329375774..e18c382b1 100644 --- a/devstack/local.conf.worker.sample +++ b/devstack/local.conf.worker.sample @@ -1,7 +1,7 @@ [[local|localrc]] enable_plugin kuryr-kubernetes \ - https://git.openstack.org/openstack/kuryr-kubernetes + https://opendev.org/openstack/kuryr-kubernetes RECLONE="no" @@ -37,7 +37,7 @@ KURYR_K8S_API_URL="http://${SERVICE_HOST}:8080" # ====== # If you already have docker configured, running and with its socket writable # by the stack user, you can omit the following line. -enable_plugin devstack-plugin-container https://git.openstack.org/openstack/devstack-plugin-container +enable_plugin devstack-plugin-container https://opendev.org/openstack/devstack-plugin-container # Kubernetes diff --git a/doc/source/installation/devstack/basic.rst b/doc/source/installation/devstack/basic.rst index 4fb517dda..81dc6f1b5 100644 --- a/doc/source/installation/devstack/basic.rst +++ b/doc/source/installation/devstack/basic.rst @@ -14,7 +14,7 @@ Cloning required repositories First of all you need to clone DevStack: :: - $ git clone https://git.openstack.org/openstack-dev/devstack + $ git clone https://opendev.org/openstack-dev/devstack Create user *stack*, give it required permissions and log in as that user: :: @@ -24,8 +24,8 @@ Create user *stack*, give it required permissions and log in as that user: :: *stack* user has ``/opt/stack`` set as its home directory. It will need its own repository with DevStack. Also clone kuryr-kubernetes: :: - $ git clone https://git.openstack.org/openstack-dev/devstack - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes + $ git clone https://opendev.org/openstack-dev/devstack + $ git clone https://opendev.org/openstack/kuryr-kubernetes Copy sample ``local.conf`` (DevStack configuration file) to devstack directory: :: diff --git a/doc/source/installation/devstack/dragonflow_support.rst b/doc/source/installation/devstack/dragonflow_support.rst index 5515045c7..1de5bc043 100644 --- a/doc/source/installation/devstack/dragonflow_support.rst +++ b/doc/source/installation/devstack/dragonflow_support.rst @@ -39,7 +39,7 @@ to use either Fedora 25 or the latest Ubuntu LTS (16.04, Xenial). :: - $ git clone https://git.openstack.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack-dev/devstack.git $ sudo ./devstack/tools/create-stack-user.sh 3. Switch to the ``stack`` user and clone DevStack and kuryr-kubernetes. @@ -47,8 +47,8 @@ to use either Fedora 25 or the latest Ubuntu LTS (16.04, Xenial). :: $ sudo su - stack - $ git clone https://git.openstack.org/openstack-dev/devstack.git - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes.git + $ git clone https://opendev.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack/kuryr-kubernetes.git 4. Configure DevStack to use Dragonflow. diff --git a/doc/source/installation/devstack/odl_support.rst b/doc/source/installation/devstack/odl_support.rst index 13f2bae1a..24ecf3861 100644 --- a/doc/source/installation/devstack/odl_support.rst +++ b/doc/source/installation/devstack/odl_support.rst @@ -34,7 +34,7 @@ to use either CentOS 7 or the latest Ubuntu LTS (16.04, Xenial). :: - $ git clone https://git.openstack.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack-dev/devstack.git $ sudo ./devstack/tools/create-stack-user.sh 3. Switch to the ``stack`` user and clone DevStack and kuryr-kubernetes. @@ -42,8 +42,8 @@ to use either CentOS 7 or the latest Ubuntu LTS (16.04, Xenial). :: $ sudo su - stack - $ git clone https://git.openstack.org/openstack-dev/devstack.git - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes.git + $ git clone https://opendev.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack/kuryr-kubernetes.git 4. Configure DevStack to use ODL. diff --git a/doc/source/installation/devstack/ovn_support.rst b/doc/source/installation/devstack/ovn_support.rst index 634e8239e..f028a4571 100644 --- a/doc/source/installation/devstack/ovn_support.rst +++ b/doc/source/installation/devstack/ovn_support.rst @@ -31,7 +31,7 @@ to use either CentOS 7 or the latest Ubuntu LTS (16.04, Xenial). :: - $ git clone https://git.openstack.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack-dev/devstack.git $ sudo ./devstack/tools/create-stack-user.sh 3. Switch to the ``stack`` user and clone DevStack and kuryr-kubernetes. @@ -39,8 +39,8 @@ to use either CentOS 7 or the latest Ubuntu LTS (16.04, Xenial). :: $ sudo su - stack - $ git clone https://git.openstack.org/openstack-dev/devstack.git - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes.git + $ git clone https://opendev.org/openstack-dev/devstack.git + $ git clone https://opendev.org/openstack/kuryr-kubernetes.git 4. Configure DevStack to use OVN. diff --git a/doc/source/installation/manual.rst b/doc/source/installation/manual.rst index 1a132cdaf..ba97898f3 100644 --- a/doc/source/installation/manual.rst +++ b/doc/source/installation/manual.rst @@ -9,7 +9,7 @@ Install ``kuryr-k8s-controller`` in a virtualenv:: $ mkdir kuryr-k8s-controller $ cd kuryr-k8s-controller $ virtualenv env - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes + $ git clone https://opendev.org/openstack/kuryr-kubernetes $ . env/bin/activate $ pip install -e kuryr-kubernetes @@ -115,7 +115,7 @@ Install ``kuryr-cni`` in a virtualenv:: $ cd kuryr-k8s-cni $ virtualenv env $ . env/bin/activate - $ git clone https://git.openstack.org/openstack/kuryr-kubernetes + $ git clone https://opendev.org/openstack/kuryr-kubernetes $ pip install -e kuryr-kubernetes Create ``/etc/kuryr/kuryr.conf``:: diff --git a/tox.ini b/tox.ini index fe5fe96e8..ada05b462 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ passenv = HOME setenv = VIRTUAL_ENV={envdir} usedevelop = True install_command = pip install {opts} {packages} -deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} +deps = -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt whitelist_externals = sh