| commit | 07698abcf56f875e53734a29dd4092a53461cc1a | [log] [tgz] |
|---|---|---|
| author | Barath Kumar R <barath.r@tataelxsi.co.in> | Tue Mar 30 11:50:42 2021 +0530 |
| committer | rbara <barath.r@tataelxsi.co.in> | Thu Apr 15 17:59:48 2021 +0200 |
| tree | 9e8667fd4fa42672a3643d6d90322fbf36b89dd4 | |
| parent | a2503ee1732f9a8beeba8e04b5a5e0750dbb825d [diff] |
Feature-9518: Scale-in/Scale-out commands triggered from the UI * In NS Instances page. Click "Manual Scaling" in the actions menu. * Then a new pop-up page will opened. * In the popup there will be a list box which is filled with the all scaling-group-descriptor names captured from all VNFDs in the NSD and whoose scaling-type is "manual". * Select scale in / scale out. * When the scaling-group-descriptor name and the scaling direction are selected then Click Apply button. * The pop-up window is closed and the page is directed to "History of operations" page for this NS. Change-Id: Iaaa1500bcabea4ebda89f6c11ea91b28396aa42f Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
This project focuses on the implementation of a web GUI to interact with the Northbound API of OSM.
The project is based on (Angular), a One framework for Mobile & desktop, app-design framework and development platform for creating efficient and sophisticated single-page web apps.
Contact kumaran.m@tataelxsi.co.in, rajesh.s@tataelxsi.co.in, barath.r@tataelxsi.co.in for architecture and design discussions, requests for help, features request and bug reports on NG UI.
Following instructions in the sections below will get you a copy of the project up and running on your local machine for development and testing purposes. See Deployment section for notes on how to deploy the project on a live system.
Angular Setup, Install, & Build Guide
node -version After downloading Node.js, the node package manager (npm) should automatically be installed. Test it out by doing: npm --versionnpm install -g @angular/cli Install Locally npm install @angular/cli After installation done you can check the version using below command. It will display version details of angular-cli ng versionWe are done with the installation of Angular
Clone the NG UI from the repository
git clone "https://osm.etsi.org/gerrit/osm/NG-UI"
Install the packages
cd NG-UI
npm install
The following instructions is for running NG UI locally for development purpose,
On the folder project
Open proxy.conf.json
Add the below code
{ "/osm/*": { "target": "https://OSM-NBI-IP:9999", "secure": false, "logLevel": "info" } }
To run the application give the below command
npm run proxy
To check the typescript lint run the below command
npm run lint
To deploy the NG UI use the Dockerfile
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the Apache2 License - see the LICENSE.md file for details