diff --git a/docs/server/source/cloud-deployment-templates/node-on-kubernetes.rst b/docs/server/source/cloud-deployment-templates/node-on-kubernetes.rst index 92bb2a6b..a95deb09 100644 --- a/docs/server/source/cloud-deployment-templates/node-on-kubernetes.rst +++ b/docs/server/source/cloud-deployment-templates/node-on-kubernetes.rst @@ -576,12 +576,11 @@ You can use it as below to get started immediately: .. code:: bash - $ kubectl run -it toolbox --image bigchaindb/toolbox --restart=Never --rm - kubectl --context k8s-bdb-test-cluster-0 \ - run -it toolbox \ - --image bigchaindb/toolbox \ - --image-pull-policy=Always \ - --restart=Never --rm + $ kubectl --context k8s-bdb-test-cluster-0 \ + run -it toolbox \ + --image bigchaindb/toolbox \ + --image-pull-policy=Always \ + --restart=Never --rm It will drop you to the shell prompt. Now you can query for the ``mdb`` and ``bdb`` service details. @@ -652,3 +651,6 @@ Try to access the ``:80`` on your browser. You must receive a json output that shows the BigchainDB server version among other things. +Use the Python Driver to send some transactions to the BigchainDB node and +verify that your node or cluster works as expected. + diff --git a/docs/server/source/cloud-deployment-templates/server-tls-certificate.rst b/docs/server/source/cloud-deployment-templates/server-tls-certificate.rst index b657b480..844f670a 100644 --- a/docs/server/source/cloud-deployment-templates/server-tls-certificate.rst +++ b/docs/server/source/cloud-deployment-templates/server-tls-certificate.rst @@ -82,10 +82,3 @@ private keys. cat mdb-instance-0.crt mdb-instance-0.key > mdb-instance-0.pem - -Step 5: Update the MongoDB Config File --------------------------------------- - -In the MongoDB configuration file, set the ``net.ssl.PEMKeyFile`` parameter to -the path of the ``mdb-instance-0.pem`` file, and the ``net.ssl.CAFile`` -parameter to the ``ca.crt`` file.