aboutsummaryrefslogtreecommitdiffstats
path: root/docs/release/userguide/FAQ
diff options
context:
space:
mode:
authorJustin chi <chigang@huawei.com>2017-10-18 13:53:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-10-18 13:53:29 +0000
commit77538b1f55316c9fda9a6cbcec17707a03bdfa05 (patch)
tree63498fab33810c4fd50842a04ebc2da31a9c47be /docs/release/userguide/FAQ
parent0bd9deecf2efcbb06b24a2c6200c3f6c1326aaf6 (diff)
parent4f90858ffbe3e566f30f8bf58309d28989212d0e (diff)
Merge "Update the Euphrates docs for kubernetes scenario"
Diffstat (limited to 'docs/release/userguide/FAQ')
-rw-r--r--docs/release/userguide/FAQ/faq.rst35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/release/userguide/FAQ/faq.rst b/docs/release/userguide/FAQ/faq.rst
index f2500a0d..326b85fe 100644
--- a/docs/release/userguide/FAQ/faq.rst
+++ b/docs/release/userguide/FAQ/faq.rst
@@ -131,9 +131,44 @@ How to recovery network connection after Jumphost reboot
source deploy/network.sh && save_network_info
+How to use Kubernetes CLI
+=========================
+
+Login one of the controllers
+----------------------------
+
+There are 3 controllers referring to host1 to host3 with IPs from 10.1.0.50 to 10.1.0.52.
+The username of the nodes is root, and the password is root.
+
+.. code-block:: bash
+
+ ssh root@10.1.0.50
+
+Run the Kubernetes command
+--------------------------
+
+Kubectl controls the Kubernetes cluster manager.
+
+.. code-block:: bash
+
+ kubectl help
+
+Follow the k8s example to create a ngnix service
+------------------------------------------------
+
+To create a nginx service, please read Ref[2] at the end of this page.
+
References
==========
+
+[1]
+---
+
For more information on the Compass4nfv FAQ, please visit
`COMPASS FAQ WIKI Page <https://wiki.opnfv.org/compass4nfv_faq>`_
+[2]
+---
+
+`K8s Get-Started Page <http://containertutorials.com/get_started_kubernetes/k8s_example.html>`_