summaryrefslogtreecommitdiffstats
path: root/docs/installation.rst
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-05-22 17:38:16 -0700
committerGirish Havaldar <hg0071052@techmahindra.com>2018-05-23 06:30:48 +0000
commit78d594b5a54dd45aebe3ac05a256ce43ca4213b7 (patch)
tree78fe13a2547763a2bf7465b7150e3a4d246d310e /docs/installation.rst
parentcd6ef3a93d3dae845ba0333de9caa52c99923e9b (diff)
Add release notes and fix docs
Add release notes for SMS Fix other docs issues in SMS Issue-ID: AAF-185 Change-Id: Ib3860018229b61942ab8a48cfdafe0b3f21ceed1 Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'docs/installation.rst')
-rw-r--r--docs/installation.rst32
1 files changed, 11 insertions, 21 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index b22d133..87507c0 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -5,29 +5,19 @@
Installation
============
-The Secret Managment Project is a subproject of AAF and will deployed via Helm on Kubernetes
-under the OOM Project
+**Kubernetes**
+
+The Secret Managment Service project is a sub-project of AAF and will be deployed via Helm on Kubernetes
+under the OOM Project umbrella. It will be automatically installed when the AAF chart is installed.
+
+**Standalone Install on Bare-Metal or VM**
+
+A script for doing a standalone install is provided in the repository
+Run it as below:
.. code-block:: console
- # Set Datastore as Consul
- DATASTORE="consul"
- # Set IP address of where Consul is running
- DATASTORE_IP="localhost"
- # Set mountpath inside the container where persistent data is stored.
- MOUNTPATH="/dkv_mount_path/configs/"
- # Place all Config data which needs to be loaded in default directory.
- DEFAULT_CONFIGS=$(pwd)/mountpath/default
- # Create the directories.
- mkdir -p mountpath/default
- # Login to Nexus.
- docker login -u docker -p docker nexus3.onap.org:10001
- # Pull distributed-kv-store image.
- docker pull nexus3.onap.org:10001/onap/music/distributed-kv-store
- # Run the distributed-kv-store image.
- docker run -e DATASTORE=$DATASTORE -e DATASTORE_IP=$DATASTORE_IP -e MOUNTPATH=$MOUNTPATH -d \
- --name dkv \
- -v $DEFAULT_CONFIGS:/dkv_mount_path/configs/default \
- -p 8200:8200 -p 8080:8080 nexus3.onap.org:10001/onap/music/distributed-kv-store
+ cd sms-service/bin/deploy
+ sms.sh start
.. end