+++ /dev/null
-.. This work is licensed under a Creative Commons Attribution 4.0 International
-.. License. http://creativecommons.org/licenses/by/4.0
-.. (c) Xuan Jia (China Mobile)
-
-==========================
-Configure Guide
-==========================
-
-:Project: OpenRetriever, https://wiki.opnfv.org/display/openretriever
-
-:Editors: Xuan Jia (China Mobile)
-:Authors: Xuan Jia (China Mobile)
-
-:Abstract: This document provides the users with the Configuration Guide to set
-           up an environment as Kubernetes with DPDK enabled.
-
-.. toctree::
-   :maxdepth: 2
-
-   featureconfig.rst
-
 
 :Editors: Xuan Jia (China Mobile)
 :Authors: Xuan Jia (China Mobile)
 
-:Abstract: Container4NFV provides the users with gap analysis regarding container
-           feature requirements with Kubernetes, OpenStack. The gap analysis
-           serves as feature specific user guides and references when a user you
-           may leverage the container feature in the platform and need to perform
-           some container releated operations
 .. toctree::
    :maxdepth: 3
 
-   gap-kubernetes.rst
-   gap-openstack.rst
-
+   install.rst
 
--- /dev/null
+Installation
+============
+
+Vagrant is installed in Ubuntu 16.04.
+vagrant is to create kubernetes cluster using kubeadm.
+kubernetes installation by kubeadm can be refered to
+https://kubernetes.io/docs/getting-started-guides/kubeadm.
+
+Vagrant Setup
+-------------
+
+sudo apt-get install -y virtualbox
+wget --no-check-certificate https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7_x86_64.deb
+sudo dpkg -i vagrant_1.8.7_x86_64.deb
+
+K8s Setup
+---------
+
+git clone http://gerrit.opnfv.org/gerrit/container4nfv -b stable/euphrates
+cd container4nfv/src/vagrant/k8s_kubeadm/
+vagrant up
+
+Run K8s Example
+---------------
+vagrant ssh master -c "kubectl apply -f /vagrant/examples/virtio-user.yaml"
+
+
+K8s Cleanup
+-----------
+
+vagrant destroy -f