aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn DeNisco <jdenisco@cisco.com>2020-07-28 12:15:16 -0400
committerDave Barach <openvpp@barachs.net>2020-07-28 16:30:53 +0000
commitb04648762294f1a98366bd96d791656ad86fb9e1 (patch)
treeadb28ccd9c927c0ad34a7e87e683a10de3ce1403
parent18c6cd9aa88aef446d09bfec90d45a24ec6741ef (diff)
docs: Update the VPP tutorial
Update the documents for the VPP tutorial. Type: fix Signed-off-by: John DeNisco <jdenisco@cisco.com> Change-Id: I62d0641ff0af7b07a26b4379f19cbdaf285537d7
-rw-r--r--docs/about.rst4
-rw-r--r--docs/gettingstarted/progressivevpp/settingupenvironment.rst29
2 files changed, 21 insertions, 12 deletions
diff --git a/docs/about.rst b/docs/about.rst
index 06dc7c412ed..3708d44c4cb 100644
--- a/docs/about.rst
+++ b/docs/about.rst
@@ -4,6 +4,6 @@
About
=====
-**VPP Version:** 20.01-rc0~785-g1063f2ae8
+**VPP Version:** 20.09-rc0~244-g9fefa8916
-**Built on:** Tue Dec 10 19:22:28 GMT 2019
+**Built on:** Tue Jul 28 14:58:41 GMT 2020
diff --git a/docs/gettingstarted/progressivevpp/settingupenvironment.rst b/docs/gettingstarted/progressivevpp/settingupenvironment.rst
index b22f79b3085..c012f691e8b 100644
--- a/docs/gettingstarted/progressivevpp/settingupenvironment.rst
+++ b/docs/gettingstarted/progressivevpp/settingupenvironment.rst
@@ -5,8 +5,8 @@ Setting up your environment
All of these exercises are designed to be performed on an Ubuntu 16.04 (Xenial) box.
-* If you have an Ubuntu 16.04 box on which you have sudo or root access, you can feel free to use that.
-* If you do not, a Vagrantfile is provided to setup a basic Ubuntu 16.04 box for you in the the steps below.
+* If you have an Ubuntu 18.04 box on which you have sudo or root access, you can feel free to use that.
+* If you do not, a Vagrantfile is provided to setup a basic Ubuntu 18.04 box for you in the the steps below.
Install Virtual Box and Vagrant
-------------------------------
@@ -33,7 +33,7 @@ Create a file called **Vagrantfile** with the following contents:
Vagrant.configure(2) do |config|
- config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm"
+ config.vm.box = "bento/ubuntu-18.04"
config.vm.box_check_update = false
vmcpu=(ENV['VPP_VAGRANT_VMCPU'] || 2)
@@ -77,8 +77,9 @@ After setting up Vagrant, use these commands on your Vagrant directory to boot t
$ vagrant up
$ vagrant ssh
- $ sudo apt-get update
- $ sudo reboot -n
+ $ sudo bash
+ # apt-get update
+ # reboot -n
$ # Wait for the VM to reboot
$ vagrant ssh
@@ -89,22 +90,30 @@ Now that the VM is updated, we will install the VPP packages.
For more on installing VPP please refer to :ref:`installingVPP`.
-For this tutorial we need to install VPP by modifying the file
+For this tutorial we will install VPP by modifying the file
**/etc/apt/sources.list.d/99fd.io.list**.
-Write this file with the following contents:
+We write this file with the following contents:
.. code-block:: console
- deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.ubuntu.xenial.main/ ./
+ $ sudo bash
+ # echo "deb [trusted=yes] https://packagecloud.io/fdio/release/ubuntu bionic main" > /etc/apt/sources.list.d/99fd.io.list
+ #
+
+Get the key.
+
+.. code-block:: console
+
+ # curl -L https://packagecloud.io/fdio/release/gpgkey | sudo apt-key add -
+ #
Then execute the following commands.
.. code-block:: console
- $ sudo bash
# apt-get update
- # apt-get install vpp-lib vpp vpp-plugins
+ # apt-get install vpp vpp-plugin-core vpp-plugin-dpdk
#
Stop VPP for this tutorial. We will be creating our own instances of VPP.