From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mogw1208.ocn.ad.jp (mogw1208.ocn.ad.jp [153.149.235.9]) by dpdk.org (Postfix) with ESMTP id E323F1D901 for ; Fri, 15 Jun 2018 09:06:18 +0200 (CEST) Received: from mf-smf-ucb035c3 (mf-smf-ucb035c3.ocn.ad.jp [153.153.66.232]) by mogw1208.ocn.ad.jp (Postfix) with ESMTP id 780B5900240; Fri, 15 Jun 2018 16:06:17 +0900 (JST) Received: from ntt.pod01.mv-mta-ucb024 ([153.149.142.98]) by mf-smf-ucb035c3 with ESMTP id TioLff5hl3vLcTioLfWhtA; Fri, 15 Jun 2018 16:06:17 +0900 Received: from smtp.ocn.ne.jp ([153.149.227.165]) by ntt.pod01.mv-mta-ucb024 with id yv6H1x0093akymp01v6HoN; Fri, 15 Jun 2018 07:06:17 +0000 Received: from localhost.localdomain (p5164-ipngn8501marunouchi.tokyo.ocn.ne.jp [153.214.228.164]) by smtp.ocn.ne.jp (Postfix) with ESMTPA; Fri, 15 Jun 2018 16:06:17 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org Cc: Yasufumi Ogawa Date: Fri, 15 Jun 2018 16:06:00 +0900 Message-Id: <20180615070615.15594-1-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.17.1 Subject: [spp] [PATCH 00/15] Introduction of SPP container tools X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2018 07:06:19 -0000 From: Yasufumi Ogawa Hi all, I would like to introduce SPP container for managing containers of SPP processes and DPDK applications connected with SPP. SPP container provides a set of python scripts for buiding docker image and launching app containers. Containers are connected with SPP and its network is to be easily configurable. With SPP container, you can easily build and install DPDK and its applications as docker images. Build tool supports several versions of DPDK and Ubuntu. App container script enables user to launch application container with simple command line interface. It means that you do not need to type a long command line options for docker and DPDK. This series of patches is for adding documents of SPP container. You can refer the manual at https://spp-tmp.readthedocs.io/en/doc-sppc/tools/index.html for reviewing temporarily until the patches are merged. After patches are merged, it is moved to here and temprary is removed. https://spp.readthedocs.io/en/latest/tools/index.html Thanks, Yasufumi Yasufumi Ogawa (15): docs: add index of SPP container tool docs: add overview of SPP container docs: add overview image of SPP container docs: add getting started guide of SPP container docs: add image of example for gsg docs: add install guide for SPP container docs: add build image guide for SPP container docs: add manual for app container launchers docs: add use cases of SPP container docs: add usecase image of testing vhost docs: add usecase image of testing ring docs: add usecase image of pktgen and l2fwd docs: add usecase image of using less lcores docs: add usecase image of load balancer docs: add how to develop guide for SPP container .../images/tools/sppc/sppc_gsg_testpmd.svg | 614 +++++++ .../images/tools/sppc/sppc_overview.svg | 946 ++++++++++ .../tools/sppc/sppc_usecase_l2fwdpktgen.svg | 918 ++++++++++ .../sppc/sppc_usecase_l2fwdpktgen_less.svg | 848 +++++++++ .../tools/sppc/sppc_usecase_lb_pktgen.svg | 1573 +++++++++++++++++ .../images/tools/sppc/sppc_usecase_ring.svg | 1032 +++++++++++ .../images/tools/sppc/sppc_usecase_vhost.svg | 644 +++++++ docs/guides/tools/index.rst | 6 +- docs/guides/tools/sppc/app_launcher.rst | 1061 +++++++++++ docs/guides/tools/sppc/build_img.rst | 181 ++ docs/guides/tools/sppc/getting_started.rst | 327 ++++ docs/guides/tools/sppc/howto_launcher.rst | 321 ++++ docs/guides/tools/sppc/index.rst | 21 + docs/guides/tools/sppc/install.rst | 94 + docs/guides/tools/sppc/overview.rst | 31 + docs/guides/tools/sppc/usecases.rst | 676 +++++++ 16 files changed, 9292 insertions(+), 1 deletion(-) create mode 100644 docs/guides/images/tools/sppc/sppc_gsg_testpmd.svg create mode 100644 docs/guides/images/tools/sppc/sppc_overview.svg create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_l2fwdpktgen.svg create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_l2fwdpktgen_less.svg create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_lb_pktgen.svg create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_ring.svg create mode 100644 docs/guides/images/tools/sppc/sppc_usecase_vhost.svg create mode 100644 docs/guides/tools/sppc/app_launcher.rst create mode 100644 docs/guides/tools/sppc/build_img.rst create mode 100644 docs/guides/tools/sppc/getting_started.rst create mode 100644 docs/guides/tools/sppc/howto_launcher.rst create mode 100644 docs/guides/tools/sppc/index.rst create mode 100644 docs/guides/tools/sppc/install.rst create mode 100644 docs/guides/tools/sppc/overview.rst create mode 100644 docs/guides/tools/sppc/usecases.rst -- 2.17.1