This is a living document as there are many ways to use containers with SPDK. As new usages are identified and tested, they will be documented here.
In this document
- Using SPDK vhost target to provide volume service to Kata Containers and Docker
- Containerizing an SPDK Application for Docker
Using SPDK vhost target to provide volume service to Kata Containers and Docker
Kata Containers can build a secure container runtime with lightweight virtual machines that feel and perform like containers, but provide stronger workload isolation using hardware virtualization technology as a second layer of defense.
From Kata Containers 1.11.0, vhost-user-blk support is enabled in kata-containers/runtime
. That is to say SPDK vhost target can be used to provide volume service to Kata Containers directly. In addition, a container manager like Docker, can be configured easily to launch a Kata container with an SPDK vhost-user block device. For operating details, visit Kata containers use-case Setup to run SPDK vhost-user devices with Kata Containers and Docker
Containerizing an SPDK Application for Docker
There are no SPDK specific changes needed to run an SPDK based application in a docker container, however this quick start guide should help you as you containerize your SPDK based application.
- Make sure you have all of your app dependencies identified and included in your Dockerfile
- Make sure you have compiled your application for the target arch
- Make sure your host has hugepages enabled
- Make sure your host has bound your nvme device to your userspace driver
- Write your Dockerfile. The following is a simple Dockerfile to containerize the nvme
hello_world
example:
- Create your image
sudo docker image build -t hello:1.0 .
- You docker command line will need to include at least the following:
- the
--privileged
flag to enable sharing of hugepages - use of the
-v
switch to map hugepages
sudo docker run --privileged -v /dev/hugepages:/dev/hugepages hello:1.0
or depending on the needs of your app you may need one or more of the following parameters:
- If you are using the SPDK app framework:
-v /dev/shm:/dev/shm
- If you need to use RPCs from outside of the container:
-v /var/tmp:/var/tmp
- If you need to use the host network (i.e. NVMF target application):
--network host
Your output should look something like this: