| prithiv | ec994b1 | 2017-12-04 15:56:45 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| Helena McGough | 375f07c | 2017-10-13 16:14:16 +0100 | [diff] [blame] | 2 | # Copyright 2017 Intel Research and Development Ireland Limited |
| 3 | # ************************************************************* |
| 4 | |
| 5 | # This file is part of OSM Monitoring module |
| 6 | # All Rights Reserved to Intel Corporation |
| 7 | |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | # not use this file except in compliance with the License. You may obtain |
| 10 | # a copy of the License at |
| 11 | |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 17 | # License for the specific language governing permissions and limitation |
| 18 | |
| 19 | # under the License. |
| 20 | |
| 21 | # For those usages not covered by the Apache License, Version 2.0 please |
| 22 | # contact: prithiv.mohan@intel.com or adrian.hoban@intel.com |
| 23 | |
| 24 | #__author__ = "Prithiv Mohan" |
| 25 | #__date__ = "13/Oct/2017" |
| 26 | |
| 27 | #This is a temporary installation script for the MON Module. From the next |
| 28 | #point release, MON will be a part of the OSM Module and can be installed |
| 29 | #through the install_osm.sh script, just like any other modules. |
| 30 | |
| 31 | lxc launch ubuntu:16.04 MON |
| 32 | lxc exec MON -- apt-get --yes update |
| 33 | lxc exec MON -- apt-get --yes install git python python-pip libmysqlclient-dev |
| 34 | lxc exec MON -- git clone https://osm.etsi.org/gerrit/osm/MON.git |
| 35 | lxc exec MON -- pip install -r /root/MON/requirements.txt |
| 36 | lxc exec MON -- python /root/MON/kafkad |
| Helena McGough | 249a52f | 2017-12-12 11:27:46 +0000 | [diff] [blame] | 37 | lxc exec MON -- /bin/bash /root/MON/scripts/kafka.sh |
| 38 | lxc exec MON -- /bin/bash /root/MON/osm_mon/plugins/vRealiseOps/vROPs_Webservice/install.sh |