diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2017-06-22 08:45:04 -0700 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2017-06-22 08:45:23 -0700 |
commit | 7dcda31fe01f5fe910033a0ff97eb1ba795ee680 (patch) | |
tree | 58d4406453c84fdf6c02e4bcbc18f57449dffd3e /src/fuel-plugin/deployment_scripts/install.sh | |
parent | e81d42edd4199d13d779753d1969f23ba74c98da (diff) |
cleanup: remove fuel plugin since fuel@opnfv uses mcp
Change-Id: I1c745106c1db5e69ba698d9076ae6c707dbc37b7
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/fuel-plugin/deployment_scripts/install.sh')
-rwxr-xr-x | src/fuel-plugin/deployment_scripts/install.sh | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/src/fuel-plugin/deployment_scripts/install.sh b/src/fuel-plugin/deployment_scripts/install.sh deleted file mode 100755 index 4c6da70b..00000000 --- a/src/fuel-plugin/deployment_scripts/install.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/bin/bash -set -eux - -INSTALL_HOME=/opt/collectd-ceilometer - -HOST=$1 -OS_AUTH_URL=$2 -OS_USERNAME=$3 -OS_PASSWORD=$4 -enable_mcelog=$5 -enable_hugepages=$6 -enable_ovs_events=$7 - -CEILOMETER_URL_TYPE=${CEILOMETER_URL_TYPE:-internalURL} -CEILOMETER_TIMEOUT=${CEILOMETER_TIMEOUT:-1000} - -MCELOG_SOCKET="socket-path = /var/run/mcelog-client" -MCELOG_CONF="/etc/mcelog/mcelog.conf" - -rm -rf $INSTALL_HOME; mkdir -p $INSTALL_HOME -cd $INSTALL_HOME -curl http://$HOST:8080/plugins/fuel-plugin-collectd-ceilometer-1.0/repositories/ubuntu/collectd-ceilometer.tgz | tar xzvf - - -apt-get install -y --allow-unauthenticated collectd python-dev libpython2.7 mcelog - -cat << EOF > /etc/collectd/collectd.conf.d/collectd-ceilometer-plugin.conf -<LoadPlugin python> - Globals true -</LoadPlugin> - -<Plugin python> - ModulePath "$INSTALL_HOME/collectd-ceilometer-plugin" - LogTraces true - Interactive false - Import "collectd_ceilometer.plugin" - - <Module "collectd_ceilometer.plugin"> - - # Verbosity 1|0 - #VERBOSE 0 - - # Batch size - BATCH_SIZE 3 - - # Service endpoint addresses - OS_AUTH_URL "$OS_AUTH_URL" - - # Ceilometer address - #CEILOMETER_ENDPOINT - CEILOMETER_URL_TYPE "$CEILOMETER_URL_TYPE" - - # Ceilometer timeout in ms - CEILOMETER_TIMEOUT "$CEILOMETER_TIMEOUT" - - # # Ceilometer user creds - OS_USERNAME "$OS_USERNAME" - OS_PASSWORD "$OS_PASSWORD" - OS_TENANT_NAME "services" - - </Module> -</Plugin> -EOF - -if [ $enable_hugepages = 'true' ] -then - cat << EOF > /etc/collectd/collectd.conf.d/hugepages.conf -LoadPlugin hugepages - -<Plugin hugepages> - ReportPerNodeHP true - ReportRootHP true - ValuesPages true - ValuesBytes false - ValuesPercentage false -</Plugin> -EOF -fi - -if [ $enable_mcelog = 'true' ] -then - echo $MCELOG_SOCKET | sudo tee -a $MCELOG_CONF; - cat << EOF > /etc/collectd/collectd.conf.d/mcelog.conf -<LoadPlugin mcelog> - Interval 1 -</LoadPlugin> -<Plugin "mcelog"> - McelogClientSocket "/var/run/mcelog-client" -</Plugin> -EOF -fi - -if [ $enable_ovs_events = 'true' ] -then - ovs-vsctl set-manager ptcp:6640 - cat << EOF > /etc/collectd/collectd.conf.d/ovs.conf -<LoadPlugin ovs_events> - Interval 1 -</LoadPlugin> -<Plugin "ovs_events"> - SendNotification true -</Plugin> -EOF -fi - -service collectd restart |