From 40ce68ba939ca7cce3e9e8d8ab3f0bf996bc05a0 Mon Sep 17 00:00:00 2001 From: "Sonsino, Ofir (os0695)" Date: Mon, 7 May 2018 10:43:38 +0300 Subject: Update ReadTheDocs Change-Id: I3c4e4ae640ecc3d1e8542e2fba3592cb547c343e Issue-ID: VID-216 Signed-off-by: Sonsino, Ofir (os0695) --- docs/administration.rst | 12 +++++++++++- docs/installation.rst | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/administration.rst b/docs/administration.rst index 33595fdb8..ab9c572a1 100644 --- a/docs/administration.rst +++ b/docs/administration.rst @@ -8,4 +8,14 @@ Actions ------- - | **Set the list of services to be instantiated by MACRO** - | To set a certain service for the MACRO style instantiation instead of A La Carte, update MACRO_SERVICES in vidConfiguration.js file, with the service model invariant UUID (More info under the Configurations section). \ No newline at end of file + | To set a certain service for the MACRO style instantiation instead of A La Carte, update MACRO_SERVICES in vidConfiguration.js file, with the service model invariant UUID (More info under the Configurations section). + +- | **Populate VID Project/Owning entity/Line of Business/Platform drop downs** + | VID administrator has to populate this drop downs with at least one option each. This gets done easily by a POST request. In the following example we add a "Demonstration" option to the Line of Business drop down: + | + | ``curl -X POST 'http://vid.api.simpledemo.onap.org:8080/vid/maintenance/category_parameter/lineOfBusiness' -H 'Accept-Encoding: gzip, deflate' -H 'Content-Type:application/json' -d '{"options":["Demonstration"]}'`` + | + | (Replace lineOfBusiness with: platform, project, owningEntity - in order to add Demonstration to all other drop downs as well) + +- | **VoLTE E2E services deployment support** + | VID supports VoLTE E2E services deployment. In order to trigger the E2E flow, the service category in the model (as SDC generates it) has to be set to "E2E Service". \ No newline at end of file diff --git a/docs/installation.rst b/docs/installation.rst index a2b93d021..54415add5 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -17,7 +17,7 @@ Please follow the instructions given below, for installing VID using a Docker im docker pull mariadb:10 docker login -u docker -p docker nexus3.onap.org:10001 - docker pull nexus3.onap.org:10001/openecomp/vid:v1.1.0 + docker pull nexus3.onap.org:10001/onap/vid:1.2.1 2. Install by running following command (Use the path for the lf_config folder under the VID git repository as CONFIG_PATH) @@ -27,5 +27,5 @@ Please follow the instructions given below, for installing VID using a Docker im docker run --name vid-mariadb -e MYSQL_DATABASE=vid_openecomp_epsdk -e MYSQL_USER=vidadmin -e MYSQL_PASSWORD=YOUR_PASSWORD -e MYSQL_ROOT_PASSWORD=ROOT_PASSWORD -v CONFIG_PATH/vid-my.cnf:/etc/mysql/my.cnf -v CONFIG_PATH/vid-pre-init.sql:/docker-entrypoint-initdb.d/vid-pre-init.sql -v /var/lib/mysql -d mariadb:10 #start VID server - docker run -e VID_MYSQL_DBNAME=vid_openecomp_epsdk -e VID_MYSQL_PASS=YOUR_PASSWORD --name vid-server -p 8080:8080 --link vid-mariadb:vid-mariadb-docker-instance -d nexus3.onap.org:10001/openecomp/vid:v1.1.0 + docker run -e VID_MYSQL_DBNAME=vid_openecomp_epsdk -e VID_MYSQL_PASS=YOUR_PASSWORD --name vid-server -p 8080:8080 --link vid-mariadb:vid-mariadb-docker-instance -d nexus3.onap.org:10001/onap/vid:1.2.1 -- cgit 1.2.3-korg