diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index b644f48bc..1cc362db6 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -37,18 +37,18 @@ Project Hosting Details * https://wiki.openstack.org/wiki/Meetings#Murano_meeting * Code Hosting - * https://git.openstack.org/cgit/openstack/murano + * https://opendev.org/openstack/murano - * https://git.openstack.org/cgit/openstack/murano-agent + * https://opendev.org/openstack/murano-agent - * https://git.openstack.org/cgit/openstack/murano-dashboard + * https://opendev.org/openstack/murano-dashboard - * https://git.openstack.org/cgit/openstack/python-muranoclient + * https://opendev.org/openstack/python-muranoclient * Code Review - * https://review.openstack.org/#/q/murano+AND+status:+open,n,z + * https://review.opendev.org/#/q/murano+AND+status:+open,n,z * https://docs.openstack.org/infra/manual/developers.html#development-workflow * Murano Design Specifications - * https://git.openstack.org/openstack/murano-specs + * https://opendev.org/openstack/murano-specs diff --git a/README.rst b/README.rst index 480ad1dbd..57042c436 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ Project Resources * Additional resources are linked from the project `Wiki `_ page -* `Python client `_ +* `Python client `_ License ------- diff --git a/devstack/README.rst b/devstack/README.rst index 0fc1aae2a..e6c4288f2 100644 --- a/devstack/README.rst +++ b/devstack/README.rst @@ -4,17 +4,17 @@ Enabling in Devstack #. Download DevStack_:: - git clone https://git.openstack.org/openstack-dev/devstack + git clone https://opendev.org/openstack/devstack cd devstack #. Edit ``local.conf`` to enable murano and heat devstack plugin:: > cat local.conf [[local|localrc]] - enable_plugin murano https://git.openstack.org/openstack/murano + enable_plugin murano https://opendev.org/openstack/murano #Enable heat plugin - enable_plugin heat https://git.openstack.org/openstack/heat + enable_plugin heat https://opendev.org/openstack/heat #. If you want Murano Cloud Foundry Broker API service enabled, add the following line to ``local.conf``:: diff --git a/devstack/upgrade/settings b/devstack/upgrade/settings index 5bf9c5267..3a324ae49 100644 --- a/devstack/upgrade/settings +++ b/devstack/upgrade/settings @@ -1,8 +1,8 @@ register_project_for_upgrade murano register_db_to_save murano -devstack_localrc base enable_plugin murano https://git.openstack.org/openstack/murano -devstack_localrc target enable_plugin murano https://git.openstack.org/openstack/murano +devstack_localrc base enable_plugin murano https://opendev.org/openstack/murano +devstack_localrc target enable_plugin murano https://opendev.org/openstack/murano devstack_localrc base enable_service murano-api murano-engine devstack_localrc target enable_service murano-api murano-engine diff --git a/doc/source/admin/appdev-guide/app_unit_tests.rst b/doc/source/admin/appdev-guide/app_unit_tests.rst index 57e4f27f3..03b07f8af 100644 --- a/doc/source/admin/appdev-guide/app_unit_tests.rst +++ b/doc/source/admin/appdev-guide/app_unit_tests.rst @@ -17,7 +17,7 @@ MuranoPL unit tests. All application test cases should be: * Specified in the MuranoPL class, inherited from - `io.murano.test.testFixture `_ + `io.murano.test.testFixture `_ This class supports loading object model with the corresponding `load(json)` function. Also it contains a minimal set of assertions such as @@ -216,5 +216,5 @@ only once as needed. And assert from the second test case checks for a variable value at the end of the application deployment. Test cases examples can be found in :file:`TomcatTest.yaml` class of the -Apache Tomcat application located at `murano-apps repository `_. +Apache Tomcat application located at `murano-apps repository `_. You can run test cases with the commands provided above. diff --git a/doc/source/admin/appdev-guide/encrypting_properties.rst b/doc/source/admin/appdev-guide/encrypting_properties.rst index 581f7f9d7..179afe2e9 100644 --- a/doc/source/admin/appdev-guide/encrypting_properties.rst +++ b/doc/source/admin/appdev-guide/encrypting_properties.rst @@ -56,6 +56,6 @@ Example There is an example application available in the murano repository_. -.. _Castellan: https://github.com/openstack/castellan -.. _Barbican: https://github.com/openstack/barbican -.. _repository: https://git.openstack.org/cgit/openstack/murano/tree/contrib/packages/EncryptionDemo +.. _Castellan: https://opendev.org/openstack/castellan +.. _Barbican: https://opendev.org/openstack/barbican +.. _repository: https://opendev.org/openstack/murano/src/branch/master/contrib/packages/EncryptionDemo diff --git a/doc/source/admin/appdev-guide/murano_pl/core_lib.rst b/doc/source/admin/appdev-guide/murano_pl/core_lib.rst index 8859ebd5d..75dabe9d6 100644 --- a/doc/source/admin/appdev-guide/murano_pl/core_lib.rst +++ b/doc/source/admin/appdev-guide/murano_pl/core_lib.rst @@ -7,7 +7,7 @@ Some objects and actions can be used in several application deployments. All common parts are grouped into MuranoPL libraries. Murano core library is a set of classes needed in each deployment. Class names from core library can be used in the application definitions. -This library is located under the `meta `_ +This library is located under the `meta `_ directory. Classes included in the Murano core library are as follows: @@ -43,7 +43,7 @@ All MuranoPL classes are implicitly inherited from this class. .. seealso:: Source `Object.yaml - `_ + `_ file. @@ -59,7 +59,7 @@ this class. .. seealso:: Source `Application.yaml - `_ + `_ file. @@ -73,7 +73,7 @@ Manages security groups during an application deployment. .. seealso:: Source `SecurityGroupManager.yaml - `_ + `_ file. @@ -116,7 +116,7 @@ Defines a CloudRegion and groups region-local properties .. seealso:: Source `CloudRegion.yaml - `_ + `_ file. .. _environment: @@ -176,7 +176,7 @@ Environments is intent to group applications to manage them easily. .. seealso:: Source `Environment.yaml - `_ + `_ file. @@ -251,7 +251,7 @@ deploying, joining to the network, applying security group, and deleting. .. seealso:: Source `Instance.yaml - `_ + `_ file. @@ -291,7 +291,7 @@ The basic abstract class for all MuranoPL classes representing networks. .. seealso:: Source `Network.yaml - `_ + `_ file. .. _logger: @@ -376,7 +376,7 @@ This method uses the ERROR level: .. seealso:: * Source `Logger.yaml - `_ + `_ file. * `OpenStack networking logging @@ -393,5 +393,5 @@ in the application configuration. .. seealso:: Source `StatusReporter.yaml - `_ + `_ file. diff --git a/doc/source/admin/appdev-guide/muranopackages/dynamic_ui.rst b/doc/source/admin/appdev-guide/muranopackages/dynamic_ui.rst index da50a9832..9d36970d6 100644 --- a/doc/source/admin/appdev-guide/muranopackages/dynamic_ui.rst +++ b/doc/source/admin/appdev-guide/muranopackages/dynamic_ui.rst @@ -126,7 +126,7 @@ like this: However in most cases the values in object model should come from input fields rather than being static as in example above. To achieve this, object model -values can also be of a `YAQL ` +values can also be of a `YAQL ` expression type. With expressions language it becomes possible to retrieve input control values, do some calculations and data transformations (queries). Any YAML value that is not enclosed in quote marks and conforms to the YAQL @@ -399,7 +399,7 @@ field attributes. The most common attributes are the following: that set up what message to show to the user in case of errors. * **validators** is a list of dictionaries, each dictionary should at least have *expr* key, under that key either some - `YAQL `_ + `YAQL `_ expression is stored, either one-element dictionary with *regexpValidator* key (and some regexp string as value). Another possible key of a validator dictionary is *message*, and although diff --git a/doc/source/admin/configure_cloud_foundry_service_broker.rst b/doc/source/admin/configure_cloud_foundry_service_broker.rst index 48d7bbe70..e2dc877f9 100644 --- a/doc/source/admin/configure_cloud_foundry_service_broker.rst +++ b/doc/source/admin/configure_cloud_foundry_service_broker.rst @@ -121,7 +121,7 @@ You need simply update your ``local.conf`` with the following: .. code-block:: ini [[local|localrc]] - enable_plugin murano https://git.openstack.org/openstack/murano + enable_plugin murano https://opendev.org/openstack/murano enable_service murano-cfapi How to use service broker diff --git a/doc/source/admin/deploy_murano/configure_ssl.rst b/doc/source/admin/deploy_murano/configure_ssl.rst index 818efc7bf..52746d02a 100644 --- a/doc/source/admin/deploy_murano/configure_ssl.rst +++ b/doc/source/admin/deploy_murano/configure_ssl.rst @@ -96,7 +96,7 @@ set ``ssl = True`` in the ``[rabbitmq]`` section of insecure = False If you want to configure the murano agent differently, you need to change -the `default template `_ located in the murano core library. +the `default template `_ located in the murano core library. After you finish with the template modification, verify that you zip and re-upload the murano core library. diff --git a/doc/source/admin/deploy_murano/devstack.rst b/doc/source/admin/deploy_murano/devstack.rst index 5026872da..e7f612657 100644 --- a/doc/source/admin/deploy_murano/devstack.rst +++ b/doc/source/admin/deploy_murano/devstack.rst @@ -13,7 +13,7 @@ with murano, proceed with the following steps: .. code-block:: console - git clone https://git.openstack.org/openstack-dev/devstack + git clone https://opendev.org/openstack/devstack cd devstack #. Edit ``local.conf`` to enable murano DevStack plug-in: @@ -22,7 +22,7 @@ with murano, proceed with the following steps: > cat local.conf [[local|localrc]] - enable_plugin murano https://git.openstack.org/openstack/murano + enable_plugin murano https://opendev.org/openstack/murano #. If you want to enable Murano Cloud Foundry Broker API service, add the following line to ``local.conf``: @@ -64,4 +64,4 @@ with murano, proceed with the following steps: .. Links .. _DevStack: https://docs.openstack.org/devstack/latest/ -.. _murano/devstack: https://git.openstack.org/cgit/openstack/murano/tree/devstack +.. _murano/devstack: https://opendev.org/openstack/murano/src/branch/master/devstack diff --git a/doc/source/admin/deploy_murano/install_manually.rst b/doc/source/admin/deploy_murano/install_manually.rst index 55cde0e54..e9098996e 100644 --- a/doc/source/admin/deploy_murano/install_manually.rst +++ b/doc/source/admin/deploy_murano/install_manually.rst @@ -64,7 +64,7 @@ Install the API service and engine .. code-block:: console cd ~/murano - git clone https://git.openstack.org/openstack/murano + git clone https://opendev.org/openstack/murano #. Create the configuration file. Murano has a common configuration file for API and engine services. @@ -244,13 +244,13 @@ This section describes how to install and run the murano dashboard. .. code-block:: console cd ~/murano - git clone https://git.openstack.org/openstack/murano-dashboard + git clone https://opendev.org/openstack/murano-dashboard #. Clone the ``horizon`` repository: .. code-block:: console - git clone https://git.openstack.org/openstack/horizon + git clone https://opendev.org/openstack/horizon #. Create a virtual environment and install ``muranodashboard`` as an editable module: @@ -368,7 +368,7 @@ To import applications using CLI, complete the following tasks: .. code-block:: console cd ~/murano - git clone https://git.openstack.org/openstack/murano-apps + git clone https://opendev.org/openstack/murano-apps #. Import every package you need from this repository by running the following command: diff --git a/doc/source/first-app/README.rst b/doc/source/first-app/README.rst index e3a5e3892..88ec6d6fb 100644 --- a/doc/source/first-app/README.rst +++ b/doc/source/first-app/README.rst @@ -2,7 +2,7 @@ This directory contains the "My first Murano App getting started guide" tutorial. The tutorials work with an application that can be found in the -`openstack/murano-apps `_ +`openstack/murano-apps `_ repository. Prerequisites diff --git a/doc/source/index.rst b/doc/source/index.rst index babae481d..8c35e1f97 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -23,10 +23,10 @@ Murano project consists of several source code repositories: .. Links -.. _murano: https://git.openstack.org/cgit/openstack/murano/ -.. _murano-agent: https://git.openstack.org/cgit/openstack/murano-agent/ -.. _murano-dashboard: https://git.openstack.org/cgit/openstack/murano-dashboard/ -.. _python-muranoclient: https://git.openstack.org/cgit/openstack/python-muranoclient/ +.. _murano: https://opendev.org/openstack/murano/ +.. _murano-agent: https://opendev.org/openstack/murano-agent/ +.. _murano-dashboard: https://opendev.org/openstack/murano-dashboard/ +.. _python-muranoclient: https://opendev.org/openstack/python-muranoclient/ Introduction to Murano diff --git a/doc/source/install/enable-ssl.rst b/doc/source/install/enable-ssl.rst index a8e2510df..f46eb6cb2 100644 --- a/doc/source/install/enable-ssl.rst +++ b/doc/source/install/enable-ssl.rst @@ -107,7 +107,7 @@ Rabbit MQ. Just set the *ssl* parameter to True to enable ssl. If you want to configure Murano Agent in a different way, change the default template. It can be found in the Murano Core Library, located at -*http://git.openstack.org/cgit/openstack/murano/tree/meta/io.murano/Resources/Agent-v1.template*. +*https://opendev.org/openstack/murano/src/branch/master/meta/io.murano/Resources/Agent-v1.template*. Take a look at the appSettings section: :: diff --git a/doc/source/install/from-source.rst b/doc/source/install/from-source.rst index 320e592a5..f7e6e3034 100644 --- a/doc/source/install/from-source.rst +++ b/doc/source/install/from-source.rst @@ -21,7 +21,7 @@ Install the API service and Engine .. code-block:: console cd ~/murano - git clone https://git.openstack.org/openstack/murano + git clone https://opendev.org/openstack/murano .. #. Set up the murano config file @@ -163,14 +163,14 @@ Dashboard. .. code-block:: console $ cd ~/murano - $ git clone https://git.openstack.org/openstack/murano-dashboard + $ git clone https://opendev.org/openstack/murano-dashboard .. #. Clone the ``horizon`` repository .. code-block:: console - $ git clone https://git.openstack.org/openstack/horizon + $ git clone https://opendev.org/openstack/horizon .. #. Create a virtual environment and install ``muranodashboard`` as an editable diff --git a/doc/source/install/import-murano-apps.rst b/doc/source/install/import-murano-apps.rst index 9c479dcc3..4c38a3d57 100644 --- a/doc/source/install/import-murano-apps.rst +++ b/doc/source/install/import-murano-apps.rst @@ -21,7 +21,7 @@ This can be done via the dashboard or via CLI: .. code-block:: console cd ~/murano - git clone https://git.openstack.org/openstack/murano-apps + git clone https://opendev.org/openstack/murano-apps .. 2. Import every package you need from this repository, using the command diff --git a/doc/source/reference/appendix/articles/guidelines.rst b/doc/source/reference/appendix/articles/guidelines.rst index 1b88a3621..2f4ff4b7e 100644 --- a/doc/source/reference/appendix/articles/guidelines.rst +++ b/doc/source/reference/appendix/articles/guidelines.rst @@ -79,5 +79,5 @@ Run the following command to build docs locally. .. _PEP 257: http://www.python.org/dev/peps/pep-0257/ .. _Tox: http://tox.testrun.org/ .. _Sphinx: http://sphinx.pocoo.org/markup/index.html -.. _murano-specs: http://git.openstack.org/cgit/openstack/murano-specs +.. _murano-specs: http://opendev.org/openstack/murano-specs .. _Launchpad: http://blueprints.launchpad.net/murano diff --git a/doc/source/reference/appendix/articles/image_builders/linux.rst b/doc/source/reference/appendix/articles/image_builders/linux.rst index 6ef5cfdf3..8a574a72a 100644 --- a/doc/source/reference/appendix/articles/image_builders/linux.rst +++ b/doc/source/reference/appendix/articles/image_builders/linux.rst @@ -25,8 +25,8 @@ Clone the components required to build an image to that directory: .. code-block:: console cd $GITDIR - git clone https://git.openstack.org/openstack/murano - git clone https://git.openstack.org/openstack/murano-agent + git clone https://opendev.org/openstack/murano + git clone https://opendev.org/openstack/murano-agent Install diskimage-builder diff --git a/doc/source/reference/appendix/articles/murano_gerrit_dashboard.rst b/doc/source/reference/appendix/articles/murano_gerrit_dashboard.rst index a10fae36e..b23f0e097 100644 --- a/doc/source/reference/appendix/articles/murano_gerrit_dashboard.rst +++ b/doc/source/reference/appendix/articles/murano_gerrit_dashboard.rst @@ -13,9 +13,9 @@ URL :: - https://review.openstack.org/#/dashboard/?foreach=%28project%3A%5E.%2A%2F.%2Amurano.%2A+OR+project%3Aopenstack%2Fyaql%29+NOT+label%3AWorkflow%3C%3D%2D1+NOT+label%3ACode%2DReview%3C%3D%2D2+status%3Aopen&title=Murano&My+Patches=owner%3Aself&You+are+a+reviewer%2C+but+haven%27t+voted+in+the+current+revision=NOT+label%3ACode%2DReview%3C%3D2%2Cself+reviewer%3Aself+NOT+owner%3Aself&Need+Feedback=NOT+label%3ACode%2DReview%3C%3D2+NOT+label%3AVerified%3C%3D%2D1+NOT+owner%3Aself&Passed+Jenkins%2C+No+Negative+Feedback=label%3ACode%2DReview%3E%3D1+NOT+label%3ACode%2DReview%3C%3D%2D1+AND+NOT+label%3AVerified%3C%3D%2D1+NOT+owner%3Aself+NOT+reviewer%3Aself+limit%3A50&Maybe+Review%3F=NOT+owner%3Aself+NOT+reviewer%3Aself+limit%3A25&My+%2B1s=label%3ACode%2DReview%3D1%2Cself+limit%3A25&Need+final+%2B2=label%3ACode%2DReview%3E%3D2+NOT+label%3ACode%2DReview%3C%3D%2D1+NOT+label%3AVerified%3C%3D%2D1+NOT+label%3ACode%2DReview%3C%3D2%2Cself+NOT+owner%3Aself+limit%3A25&My+%2B2s=label%3ACode%2DReview%3D2%2Cself+limit%3A25 + https://review.opendev.org/#/dashboard/?foreach=%28project%3A%5E.%2A%2F.%2Amurano.%2A+OR+project%3Aopenstack%2Fyaql%29+NOT+label%3AWorkflow%3C%3D%2D1+NOT+label%3ACode%2DReview%3C%3D%2D2+status%3Aopen&title=Murano&My+Patches=owner%3Aself&You+are+a+reviewer%2C+but+haven%27t+voted+in+the+current+revision=NOT+label%3ACode%2DReview%3C%3D2%2Cself+reviewer%3Aself+NOT+owner%3Aself&Need+Feedback=NOT+label%3ACode%2DReview%3C%3D2+NOT+label%3AVerified%3C%3D%2D1+NOT+owner%3Aself&Passed+Jenkins%2C+No+Negative+Feedback=label%3ACode%2DReview%3E%3D1+NOT+label%3ACode%2DReview%3C%3D%2D1+AND+NOT+label%3AVerified%3C%3D%2D1+NOT+owner%3Aself+NOT+reviewer%3Aself+limit%3A50&Maybe+Review%3F=NOT+owner%3Aself+NOT+reviewer%3Aself+limit%3A25&My+%2B1s=label%3ACode%2DReview%3D1%2Cself+limit%3A25&Need+final+%2B2=label%3ACode%2DReview%3E%3D2+NOT+label%3ACode%2DReview%3C%3D%2D1+NOT+label%3AVerified%3C%3D%2D1+NOT+label%3ACode%2DReview%3C%3D2%2Cself+NOT+owner%3Aself+limit%3A25&My+%2B2s=label%3ACode%2DReview%3D2%2Cself+limit%3A25 -`View this dashboard `__ +`View this dashboard `__ Configuration diff --git a/doc/source/reference/appendix/articles/specification/murano-api.rst b/doc/source/reference/appendix/articles/specification/murano-api.rst index 3c6240ccd..fe5c0add3 100644 --- a/doc/source/reference/appendix/articles/specification/murano-api.rst +++ b/doc/source/reference/appendix/articles/specification/murano-api.rst @@ -822,7 +822,7 @@ Create new application ---------------------- Create a new application and add it to the murano environment. -Result JSON is calculated in Murano dashboard, which is based on `UI definition `_. +Result JSON is calculated in Murano dashboard, which is based on `UI definition `_. *Request* diff --git a/doc/source/reference/appendix/articles/test_docs.rst b/doc/source/reference/appendix/articles/test_docs.rst index 96636aaff..b06d1d34e 100644 --- a/doc/source/reference/appendix/articles/test_docs.rst +++ b/doc/source/reference/appendix/articles/test_docs.rst @@ -40,7 +40,7 @@ UI tests The Murano project has a web user interface and all possible user scenarios should be tested. All UI tests are located at -``https://git.openstack.org/cgit/openstack/murano-dashboard/tree/muranodashboard/tests/functional``. +``https://opendev.org/openstack/murano-dashboard/src/branch/master/muranodashboard/tests/functional``. Automated tests for the Murano web UI are written in Python using the special Selenium library. This library is used to automate web browser interactions @@ -107,7 +107,7 @@ To download and run the tests: .. code-block:: console - git clone https://git.openstack.org/openstack/murano-dashboard + git clone https://opendev.org/openstack/murano-dashboard #. Change the default settings: @@ -202,7 +202,7 @@ Tempest tests All Murano services have tempest-based automated tests, which verify API interfaces and deployment scenarios. -Tempest tests for Murano are located at ``https://git.openstack.org/cgit/openstack/murano/tree/murano/tests/functional``. +Tempest tests for Murano are located at ``https://opendev.org/openstack/murano/src/branch/master/murano/tests/functional``. The following Python files contain basic test suites for different Murano components. @@ -210,7 +210,7 @@ API tests --------- Murano API tests are run on the devstack gate located at -``https://git.openstack.org/cgit/openstack/murano/tree/murano/tests/functional/api``. +``https://opendev.org/openstack/murano-tempest-plugin/src/branch/master/murano_tempest_tests/tests/api``. * ``test_murano_envs.py`` contains test suite with actions on murano environments (create, delete, get, and others). @@ -224,7 +224,7 @@ Murano API tests are run on the devstack gate located at Engine tests ------------ -Murano Engine Tests are run on murano-ci at ``https://git.openstack.org/cgit/openstack/murano/tree/murano/tests/functional/engine``: +Murano Engine Tests are run on murano-ci at ``https://opendev.org/openstack/murano-tempest-plugin/src/branch/master/murano_tempest_tests/tests/functional``: * ``base.py`` contains base test class and tests with actions on deploy Murano services such as Telnet and Apache. diff --git a/doc/source/user/userguide/install_client.rst b/doc/source/user/userguide/install_client.rst index 2a9f9bf5b..03678dfe9 100644 --- a/doc/source/user/userguide/install_client.rst +++ b/doc/source/user/userguide/install_client.rst @@ -24,7 +24,7 @@ command: $ murano --version -To check the latest version, see `Client library for Murano API `_. +To check the latest version, see `Client library for Murano API `_. Upgrade or remove the client @@ -84,7 +84,7 @@ Bash completion --------------- To get the latest bash completion script, download -`murano.bash_completion `_ +`murano.bash_completion `_ from the source repository and add it to your completion scripts. If you are not aware of the completion scripts location, perform the following @@ -100,7 +100,7 @@ steps: .. code-block:: console - $ curl https://git.openstack.org/cgit/openstack/python-muranoclient/plain/tools/murano.bash_completion > ~/.bash_completion/murano.sh + $ curl https://opendev.org/openstack/python-muranoclient/raw/branch/master/tools/murano.bash_completion > ~/.bash_completion/murano.sh #. Add the following code to the ``~/.profile`` file: diff --git a/murano/tests/functional/README.rst b/murano/tests/functional/README.rst index e752be2bf..e9f9d933c 100644 --- a/murano/tests/functional/README.rst +++ b/murano/tests/functional/README.rst @@ -3,4 +3,4 @@ MOVED ===== The Congress and Mistral functional integration tests has moved to -http://git.openstack.org/cgit/openstack/murano-tempest-plugin +http://opendev.org/openstack/murano-tempest-plugin diff --git a/murano_tempest_tests/README.rst b/murano_tempest_tests/README.rst index ee69f76c1..249a8f6dc 100644 --- a/murano_tempest_tests/README.rst +++ b/murano_tempest_tests/README.rst @@ -2,4 +2,4 @@ MOVED ===== -The murano tempest plugin has moved to http://git.openstack.org/cgit/openstack/murano-tempest-plugin +The murano tempest plugin has moved to http://opendev.org/openstack/murano-tempest-plugin diff --git a/tox.ini b/tox.ini index 0bc3725ce..e3ace2414 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} +install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages} setenv = VIRTUAL_ENV={envdir} passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY @@ -19,7 +19,7 @@ whitelist_externals = bash bandit [testenv:py27-queens] -install_command = pip install -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens {opts} {packages} +install_command = pip install -chttps://releases.openstack.org/constraints/upper/queens {opts} {packages} [testenv:murano-test-runner] basepython = python3