Change the repositories from stackforge to openstack
Change-Id: I9555d36bd92d7b2e6c8fb1c0cc1e01da3a6c655b
This commit is contained in:
parent
ab5e7b5371
commit
ca51563c8b
@ -6,7 +6,7 @@ The full API Specification can be found in [docs/monasca-api-spec.md](docs/monas
|
||||
|
||||
## Java Build
|
||||
|
||||
Requires monasca-common from https://github.com/stackforge/monasca-common. Download and do mvn install. Then:
|
||||
Requires monasca-common from https://github.com/openstack/monasca-common. Download and do mvn install. Then:
|
||||
|
||||
```
|
||||
cd java
|
||||
|
@ -22,7 +22,7 @@ fi
|
||||
|
||||
# This should only be done on the stack forge system
|
||||
if [ "${BUILD_COMMON}" = "true" ]; then
|
||||
git clone https://github.com/stackforge/monasca-common
|
||||
git clone https://git.openstack.org/openstack/monasca-common
|
||||
cd monasca-common
|
||||
${MVN} clean
|
||||
${MVN} install
|
||||
|
@ -48,7 +48,7 @@ MONASCA_PERSISTER_IMPLEMENTATION_LANG=${MONASCA_PERSISTER_IMPLEMENTATION_LANG:-j
|
||||
#MONASCA_PERSISTER_IMPLEMENTATION_LANG=${MONASCA_PERSISTER_IMPLEMENTATION_LANG:-python}
|
||||
|
||||
# This line will enable all of Monasca.
|
||||
enable_plugin monasca git://git.openstack.org/stackforge/monasca-api
|
||||
enable_plugin monasca git://git.openstack.org/openstack/monasca-api
|
||||
|
||||
# END DEVSTACK LOCAL.CONF CONTENTS
|
||||
|
||||
|
4
devstack/Vagrantfile
vendored
4
devstack/Vagrantfile
vendored
@ -80,7 +80,7 @@ Vagrant.configure(2) do |config|
|
||||
sudo apt-get update
|
||||
sudo apt-get -y upgrade
|
||||
sudo apt-get -y install git
|
||||
git clone https://github.com/openstack-dev/devstack
|
||||
git clone https://git.openstack.org/openstack-dev/devstack
|
||||
cd devstack
|
||||
git checkout stable/liberty
|
||||
echo '[[local|localrc]]
|
||||
@ -107,7 +107,7 @@ MONASCA_PERSISTER_IMPLEMENTATION_LANG=${MONASCA_PERSISTER_IMPLEMENTATION_LANG:-j
|
||||
#MONASCA_PERSISTER_IMPLEMENTATION_LANG=${MONASCA_PERSISTER_IMPLEMENTATION_LANG:-python}
|
||||
|
||||
# This line will enable all of Monasca.
|
||||
enable_plugin monasca git://git.openstack.org/stackforge/monasca-api
|
||||
enable_plugin monasca git://git.openstack.org/openstack/monasca-api
|
||||
' > local.conf
|
||||
./stack.sh
|
||||
SHELL
|
||||
|
@ -23,7 +23,7 @@
|
||||
# looks like
|
||||
#
|
||||
# [[local|localrc]]
|
||||
# enable_plugin monasca git://git.openstack.org/stackforge/monasca-api
|
||||
# enable_plugin monasca git://git.openstack.org/openstack/monasca-api
|
||||
#
|
||||
# By default all Monasca services are started (see
|
||||
# devstack/settings). To disable a specific service use the
|
||||
@ -562,7 +562,7 @@ function install_monasca_common {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-common ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-common.git /opt/stack/monasca-common
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-common.git /opt/stack/monasca-common
|
||||
|
||||
fi
|
||||
|
||||
@ -728,7 +728,7 @@ function install_monasca_persister_java {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-persister ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-persister /opt/stack/monasca-persister
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-persister /opt/stack/monasca-persister
|
||||
|
||||
fi
|
||||
|
||||
@ -776,7 +776,7 @@ function install_monasca_persister_python {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-persister ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-persister /opt/stack/monasca-persister
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-persister /opt/stack/monasca-persister
|
||||
|
||||
fi
|
||||
|
||||
@ -879,7 +879,7 @@ function install_monasca_notification {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-notification ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-notification /opt/stack/monasca-notification
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-notification /opt/stack/monasca-notification
|
||||
|
||||
fi
|
||||
|
||||
@ -1050,7 +1050,7 @@ function install_monasca_thresh {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-thresh ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-thresh.git /opt/stack/monasca-thresh
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-thresh.git /opt/stack/monasca-thresh
|
||||
|
||||
fi
|
||||
|
||||
@ -1107,7 +1107,7 @@ function install_monasca_keystone_client {
|
||||
|
||||
if [[ ! -d /opt/stack/python-keystoneclient ]]; then
|
||||
|
||||
sudo git clone https://github.com/openstack/python-keystoneclient /opt/stack/python-keystoneclient
|
||||
sudo git clone https://git.openstack.org/openstack/python-keystoneclient /opt/stack/python-keystoneclient
|
||||
|
||||
fi
|
||||
|
||||
@ -1147,7 +1147,7 @@ function install_monasca_agent {
|
||||
|
||||
if [[ ! -d /opt/stack/monasca-agent ]]; then
|
||||
|
||||
sudo git clone https://github.com/stackforge/monasca-agent /opt/stack/monasca-agent
|
||||
sudo git clone https://git.openstack.org/openstack/monasca-agent /opt/stack/monasca-agent
|
||||
|
||||
fi
|
||||
|
||||
|
@ -5,7 +5,7 @@ Currently monasca-vagrant is used to run tests. This document will be updated wh
|
||||
# Configuring to run the Monasca Tempest Tests
|
||||
1. Clone the OpenStack Tempest repo, and cd to it.
|
||||
```
|
||||
git clone https://github.com/openstack/tempest.git
|
||||
git clone https://git.openstack.org/openstack/tempest.git
|
||||
cd tempest
|
||||
```
|
||||
2. Create a virtualenv for running the Tempest tests and activate it. For example in the Tempest root dir
|
||||
|
4
pom.xml
4
pom.xml
@ -17,8 +17,8 @@
|
||||
</properties>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:stackforge/monasca-api</connection>
|
||||
<developerConnection>scm:git:git@github.com:stackforge/monasca-api</developerConnection>
|
||||
<connection>scm:git:git@github.com:openstack/monasca-api</connection>
|
||||
<developerConnection>scm:git:git@github.com:openstack/monasca-api</developerConnection>
|
||||
</scm>
|
||||
|
||||
<build>
|
||||
|
Loading…
Reference in New Issue
Block a user