Documentation updates

Change-Id: Iafa962d3e1c63b49735515a36e53c93f39a36e39
diff --git a/README.md b/README.md
index 73067af..7690c3f 100644
--- a/README.md
+++ b/README.md
@@ -92,15 +92,16 @@
 
 ## Deploying POD
 
-Deploying POD can be either be manual or automated using Jenkins job.
+Deploying POD can be either manual or automated using Jenkins job.
 
 You can install it manually by following these steps below.
 
 ```
 git clone https://github.com/ciena/kind-voltha.git
 cd kind-voltha/
-EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml' WITH_RADIUS=y WITH_TP=yes DEPLOY_K8S=no INSTALL_KUBECTL=no INSTALL_HELM=no ONOS_TAG=voltha-2.1 ./voltha up
+EXTRA_HELM_FLAGS='-f <PATH_TO_YOUR_K8S_CONFIG_FILE>' WITH_RADIUS=yes WITH_TP=yes DEPLOY_K8S=no INSTALL_KUBECTL=no INSTALL_HELM=no ONOS_TAG=voltha-2.1 ./voltha up
 ```
+Note: replace `PATH_TO_YOUR_K8S_CONFIG_FILE` with your Kubernetes configuration file. To create one please check this [example](https://github.com/opencord/pod-configs/blob/master/kubernetes-configs/voltha/flex-ocp-cord.yml).
 For more information on various environment variables with `./voltha up` please
 check the link [here](https://github.com/ciena/kind-voltha/blob/master/README.md)
 
@@ -121,10 +122,13 @@
 
 To trigger tests on the physical POD
 ```
+git clone https://github.com/opencord/voltha-system-tests
+git clone https://github.com/opencord/cord-tester
+git clone https://github.com/opencord/voltha
 cd voltha-system-tests/tests/functional
 robot -V <PATH_TO_YOUR_POD_CONFIGURATION_FILE> Voltha_PODTests.robot
 ```
-Note: PATH_TO_YOUR_POD_CONFIGURATION_FILE should point to the yaml file that describes your POD setup.
+Note: `PATH_TO_YOUR_POD_CONFIGURATION_FILE` should point to the yaml file that describes your POD setup.
 
 Scenarios in each test suite can be associated with a `Tag`, using which a particular scenario can be
 invoked during test execution.
diff --git a/libraries/voltctl.robot b/libraries/voltctl.robot
index 1396285..d72a4fc 100644
--- a/libraries/voltctl.robot
+++ b/libraries/voltctl.robot
@@ -28,7 +28,7 @@
 *** Keywords ***
 Create Device
     [Arguments]    ${ip}    ${port}
-    [Documentation]    Parses the output of "voltctl device list" and inspects device ${serial_number}
+    [Documentation]    Creates a device in VOLTHA
     #create/preprovision device
     ${rc}    ${device_id}=    Run and Return Rc and Output    ${VOLTCTL_CONFIG}; voltctl device create -t openolt -H ${ip}:${port}
     Should Be Equal As Integers    ${rc}    0