diff options
author | Steven Wright <sw3588@att.com> | 2018-07-30 12:51:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-07-30 12:51:06 +0000 |
commit | e99e1863cb04530ee563086f4bf5479b63b9a82b (patch) | |
tree | 3d8d406064d3fa6cf5dceb495d54c59cae4b11f9 | |
parent | fba279214b9b367084ecbd22006958c4cec28d32 (diff) | |
parent | f0cf499eede8eebcd8afed684e1d4be695aa5ef7 (diff) |
Merge "VNFRQTS - Fixing JSON example in CH 8"
-rw-r--r-- | docs/Chapter8/Ansible-JSON-Key-Value-Description.rst | 18 |
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: |