adding a bash script to launch sms in a vm 39/45339/3
authorKiran Kamineni <kiran.k.kamineni@intel.com>
Tue, 1 May 2018 04:03:45 +0000 (21:03 -0700)
committerKiran Kamineni <kiran.k.kamineni@intel.com>
Tue, 1 May 2018 22:15:04 +0000 (15:15 -0700)
This is to support vm/baremetal based deployments

Issue-ID: AAF-262
Change-Id: Iff3bca737187de5ca49d9ec6b93082344e007d9e
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
sms-service/bin/deploy/consul.json [new file with mode: 0644]
sms-service/bin/deploy/quorumconfig.json [new file with mode: 0644]
sms-service/bin/deploy/sms.sh [new file with mode: 0755]
sms-service/bin/deploy/smsconfig.json [new file with mode: 0644]
sms-service/bin/deploy/vault.json [new file with mode: 0644]

diff --git a/sms-service/bin/deploy/consul.json b/sms-service/bin/deploy/consul.json
new file mode 100644 (file)
index 0000000..7b3a5fc
--- /dev/null
@@ -0,0 +1,9 @@
+{
+  "server": true,
+  "log_level": "INFO",
+  "data_dir": "/consul/data",
+  "ports": {
+    "http": 8500,
+    "https": -1
+  }
+}
\ No newline at end of file
diff --git a/sms-service/bin/deploy/quorumconfig.json b/sms-service/bin/deploy/quorumconfig.json
new file mode 100644 (file)
index 0000000..d2f647f
--- /dev/null
@@ -0,0 +1,8 @@
+{
+    "url":"https://sms-service:10443",
+    "servername":"aaf-sms.api.simpledemo.onap.org",
+    "cafile":"cert/aaf_root_ca.cer",
+    "clientcert":"client.cert",
+    "clientkey":"client.key",
+    "timeout":"10s"
+}
\ No newline at end of file
diff --git a/sms-service/bin/deploy/sms.sh b/sms-service/bin/deploy/sms.sh
new file mode 100755 (executable)
index 0000000..5ed3496
--- /dev/null
@@ -0,0 +1,112 @@
+#
+# -------------------------------------------------------------------------
+#   Copyright 2018 Intel Corporation, Inc
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+# -------------------------------------------------------------------------
+
+SS=0
+if [ -e /opt/config/nexus_docker_repo.txt ]
+then
+       NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt)
+else
+       NEXUS_DOCKER_REPO=nexus3.onap.org:10001
+fi
+echo "Using ${NEXUS_DOCKER_REPO} for docker Repo"
+
+SMS_IMG=${NEXUS_DOCKER_REPO}/onap/aaf/sms:latest
+QUO_IMG=${NEXUS_DOCKER_REPO}/onap/aaf/smsquorumclient:latest
+VAU_IMG=library/vault:0.10.0
+CON_IMG=library/consul:1.0.6
+WORK_DIR=${PWD}
+
+if [ "$1" = "start" ]; then
+
+# Create Volume for mapping war file and tomcat
+docker volume create sms-service;
+docker volume create sms-consul;
+docker volume create sms-quorum;
+
+# Create a network for all the containers to run in.
+docker network create sms-net;
+
+# Create Consul Container
+docker create --rm --name sms-consul --network sms-net \
+--hostname sms-consul -p "8500:8500" \
+-v sms-consul:/consul/data \
+${CON_IMG} \
+consul agent -server -client 0.0.0.0 -bootstrap-expect=1 -config-file /consul/config/config.json;
+
+# Copy the configuration for Consul
+docker cp consul.json sms-consul:/consul/config/config.json;
+
+# Start the consul container
+docker start sms-consul;
+
+#Wait for Consul to start
+sleep 10
+
+# Create Vault Container
+docker create --rm --name sms-vault --network sms-net \
+--hostname sms-vault -p "8200:8200" \
+-e SKIP_SETCAP=true \
+${VAU_IMG} \
+vault server -config /vault/config/config.json;
+
+docker cp vault.json sms-vault:/vault/config/config.json;
+docker start sms-vault;
+
+# Start SMS
+docker create --rm --name sms-service --network sms-net \
+--hostname sms-service -p "10443:10443" \
+-v sms-service:/sms/auth \
+${SMS_IMG};
+
+docker cp smsconfig.json sms-service:/sms/smsconfig.json
+docker start sms-service
+
+# Start 3 Quorum Clients
+for i in {0..2}
+do
+       docker create --rm --name sms-quorum-$i --network sms-net \
+       --hostname sms-quorum-$i \
+       -v sms-quorum:/quorumclient/auth \
+       ${QUO_IMG};
+
+       docker cp quorumconfig.json sms-quorum-$i:/quorumclient/config.json
+       docker start sms-quorum-$i
+done
+
+# Connect service to host bridge network so that its port can be seen.
+docker network connect bridge sms-service;
+SS=1;
+fi
+
+# Shutdown and clean up.
+if [ "$1" = "stop" ]; then
+docker stop sms-vault sms-consul sms-service;
+for i in {0..2}; do
+docker stop sms-quorum-$i
+done
+docker network rm sms-net;
+sleep 5;
+docker volume rm sms-service;
+docker volume rm sms-consul;
+docker volume rm sms-quorum;
+SS=1
+fi
+
+if [ $SS = 0 ]; then
+       echo "Please type ${0} start or ${0} stop"
+fi
\ No newline at end of file
diff --git a/sms-service/bin/deploy/smsconfig.json b/sms-service/bin/deploy/smsconfig.json
new file mode 100644 (file)
index 0000000..4c3cf3c
--- /dev/null
@@ -0,0 +1,7 @@
+{
+    "cafile":     "cert/aaf_root_ca.cer",
+    "servercert": "cert/aaf-sms.api.simpledemo.onap.org.pem",
+    "serverkey":  "cert/aaf-sms.api.simpledemo.onap.org.pr",
+
+    "smsdbaddress": "http://sms-vault:8200"
+}
diff --git a/sms-service/bin/deploy/vault.json b/sms-service/bin/deploy/vault.json
new file mode 100644 (file)
index 0000000..2af9ce5
--- /dev/null
@@ -0,0 +1,10 @@
+storage "consul" {
+  address = "sms-consul:8500"
+  path = "smsvault"
+}
+
+listener "tcp" {
+  address = "[::]:8200"
+  tls_disable = true
+}
+disable_mlock = true
\ No newline at end of file