summaryrefslogtreecommitdiffstats
path: root/docs/Chapter8
diff options
context:
space:
mode:
authorBozawglanian, Hagop (hb755d) <hb755d@att.com>2018-07-27 19:34:59 +0000
committerBozawglanian, Hagop (hb755d) <hb755d@att.com>2018-07-27 19:35:58 +0000
commitf0cf499eede8eebcd8afed684e1d4be695aa5ef7 (patch)
tree9a55f3d7bae91c8f48d06d804f94934c0b55598e /docs/Chapter8
parent50e4115cb59ea62b0447c0f4818be31c98598d31 (diff)
VNFRQTS - Fixing JSON example in CH 8
Fixing the JSON example in 8.2 to a code-block. Change-Id: Ib004e158279b1ff6fc4c1bd97055b8126ab499a3 Issue-ID: VNFRQTS-284 Signed-off-by: Bozawglanian, Hagop (hb755d) <hb755d@att.com>
Diffstat (limited to 'docs/Chapter8')
-rw-r--r--docs/Chapter8/Ansible-JSON-Key-Value-Description.rst18
1 files changed, 10 insertions, 8 deletions
diff --git a/docs/Chapter8/Ansible-JSON-Key-Value-Description.rst b/docs/Chapter8/Ansible-JSON-Key-Value-Description.rst
index 4eb8131..4fd051c 100644
--- a/docs/Chapter8/Ansible-JSON-Key-Value-Description.rst
+++ b/docs/Chapter8/Ansible-JSON-Key-Value-Description.rst
@@ -79,21 +79,23 @@ Table B1. Ansible JSON File key value description
Ansible JSON file example:
-{
+.. code-block:: json
- “Action”:”Configure”,
+ {
- "PlaybookName": "<VNFCode>/<Version>/ansible/configure/site.yml",
+ “Action”:”Configure”,
- "NodeList": ["test1.vnf\_b.onap.com", “test2.vnf\_b.onap.com”],
+ "PlaybookName": "<VNFCode>/<Version>/ansible/configure/site.yml",
- "Timeout": 60,
+ "NodeList": ["test1.vnf\_b.onap.com", “test2.vnf\_b.onap.com”],
- "EnvParameters": {"Retry": 3, "Wait": 5, “ConfigFile”:”config.txt”},
+ "Timeout": 60,
- “FileParameters”:{“config.txt”:”db\_ip=10.1.1.1, sip\_timer=10000”}
+ "EnvParameters": {"Retry": 3, "Wait": 5, “ConfigFile”:”config.txt”},
-}
+ “FileParameters”:{“config.txt”:”db\_ip=10.1.1.1, sip\_timer=10000”}
+
+ }
In the above example, the Ansible Server will: