aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authoralex_sh <alexs@att.com>2017-08-23 17:30:56 -0400
committeralex_sh <alexs@att.com>2017-08-23 17:59:20 -0400
commit9d980ce62d1f12d1e3fba48efb50398b8b95272a (patch)
treebbd0651db6ecb86bbdbae8594f00c5d37e0b30cf /README.md
parent52b336b9a7c8b85460040bf56e4ad4d3e225ffd2 (diff)
policy-handler seed code
Change-Id: I35cd80b6e082f4b84740bab752774e8abc40ca35 Issue-Id: DCAEGEN2-46 Signed-off-by: Alex Shatov <alexs@att.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md61
1 files changed, 61 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..53bdcc4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,61 @@
+# policy_handler
+## web-service for policies to be used by DCAE-Controller
+
+- GET **/policy\_latest/***\<policy-id>* -- get the latest policy from policy-engine
+- receives the **push notifications** from policy-engine through the web-socket, filters and gets the full policy-configs, and delivers that to deploy-handler
+
+## manual http API
+
+- GET **/catch_up** -- catch up with the latest state of the policy-engine
+- GET **/policies_latest** -- get all the latest policies in policy-engine through web-service API
+- GET **/shutdown** -- shutdown the server
+
+----------
+
+## installation
+
+`virtualenv policy_venv`
+
+`cd policy_venv`
+
+`source bin/activate`
+
+`cd ../policy_handler`
+
+`pip install -r requirements.txt`
+
+----------
+
+## preparation to run
+
+`cd policy_venv`
+
+`source bin/activate`
+
+`cd ../policy_handler`
+
+----------
+
+## configure
+
+in folder `policy_handler`:
+
+ - `config.json` contains
+ - `"scope_prefixes" : ["DCAE_alex.Config_"]` - the list of policy-scope-class values
+ - `"policy_engine"` - the http connect info to ECOMP **policy-engine**
+ - headers.ClientAuth : base64(<mech-id with namespace>:<password>)
+ - headers.Authorization : base64(<policy-engine server auth>)
+ - `"deploy_handler"` - the http connect info to _policy part_ of the **deploy-handler**
+ - `policy_engine.properties` contains config info for the client lib of ECOMP **policy-engine** that receives push notifications from the ECOMP **policy-engine** server
+ - CLIENT_ID is the mech-id with the namespace - need to register with policy-engine team thru email
+ - CLIENT_KEY is the base64 of the mech-id password - separate passwords for TEST versus PROD
+
+----------
+
+## run
+
+in folder `policy_handler`:
+
+`./run_policy.sh`
+
+----------