Revert "Create stackviz element and script in nodepool"
This reverts commit b4a933c18f4791d297a42a7d6f4fcff71b48b4a5. Currently all our DIBs are failing to build, as a result we are reverting stackviz until we can properly test. Change-Id: Id336c1c8df7123c67f821a3a72da77c470a3a1f1 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
d91c3985ee
commit
acf160a5a7
@ -1,4 +1,3 @@
|
||||
cache-devstack
|
||||
nodepool-base
|
||||
puppet
|
||||
stackviz
|
||||
|
@ -1 +0,0 @@
|
||||
Installs stackviz and builds npm dependencies for eventual transfer to the logs server.
|
@ -1,35 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Copyright (C) 2014 Hewlett-Packard Development Company, L.P.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
# implied.
|
||||
#
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# dib-lint: disable=setu setpipefail
|
||||
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
||||
set -x
|
||||
fi
|
||||
set -e
|
||||
|
||||
STACKVIZ_DIR=/opt/stackviz
|
||||
cp -r /opt/git/openstack/stackviz $STACKVIZ_DIR
|
||||
|
||||
cd $STACKVIZ_DIR
|
||||
|
||||
sudo npm install -g npm
|
||||
sudo npm install -g gulp
|
||||
npm install
|
||||
|
||||
gulp prod
|
||||
|
||||
rm -rf node_modules/
|
@ -1,2 +0,0 @@
|
||||
nodejs:
|
||||
npm:
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"family": {
|
||||
"debian": {
|
||||
"nodejs": "nodejs-legacy"
|
||||
},
|
||||
"suse": {
|
||||
"npm": "nodejs-npm"
|
||||
}
|
||||
},
|
||||
"default": {
|
||||
"nodejs": "nodejs",
|
||||
"npm": "npm"
|
||||
}
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
#!/bin/bash -xe
|
||||
|
||||
# Copyright (C) 2011-2013 OpenStack Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
# implied.
|
||||
#
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
HOSTNAME=$1
|
||||
|
||||
export SUDO='true'
|
||||
export THIN='true'
|
||||
|
||||
STACKVIZ_DIR=/opt/stackviz
|
||||
cp -r /opt/git/openstack/stackviz $STACKVIZ_DIR
|
||||
|
||||
cd $STACKVIZ_DIR
|
||||
|
||||
if [ -f /usr/bin/apt-get ] ; then
|
||||
sudo apt-get install nodejs npm nodejs-legacy
|
||||
else
|
||||
sudo yum install nodejs npm
|
||||
fi
|
||||
|
||||
sudo npm install -g npm
|
||||
sudo npm install -g gulp
|
||||
npm install
|
||||
|
||||
gulp prod
|
||||
|
||||
rm -rf node_modules/
|
@ -41,7 +41,4 @@ sudo chown -R jenkins:jenkins $TEMPEST_DIR/preseed-streams
|
||||
# Delete the venv after the script is called
|
||||
sudo rm -rf /opt/git/subunit2sql-env
|
||||
|
||||
# install stackviz and dependencies
|
||||
./install_stackviz.sh
|
||||
|
||||
./fix_grub_timeout.sh
|
||||
|
Loading…
x
Reference in New Issue
Block a user