summarylogtreecommitdiffstats
path: root/kata-runtime.install
diff options
context:
space:
mode:
authorzer0def2019-12-09 15:20:00 +0100
committerzer0def2019-12-09 23:13:18 +0100
commit1af3cc567d84374d53d1b389e89037c4d2a3bac0 (patch)
tree559b467f10d2398be02ef0aefb101f7dd3f46275 /kata-runtime.install
parentdc91fbdde55e77f789eddc1e96e6ce24751f447e (diff)
downloadaur-1af3cc567d84374d53d1b389e89037c4d2a3bac0.tar.gz
Remove nemu due to deprecation upstream in upcoming RC. Updated instructions for Firecracker.
Diffstat (limited to 'kata-runtime.install')
-rw-r--r--kata-runtime.install10
1 files changed, 9 insertions, 1 deletions
diff --git a/kata-runtime.install b/kata-runtime.install
index 4329e1e65ee9..707ece5b6aa2 100644
--- a/kata-runtime.install
+++ b/kata-runtime.install
@@ -19,7 +19,7 @@ To use kata-runtime with docker,
$ docker run --runtime=kata --rm busybox date
"""
-- to set kata as the default runtime, add '"default-runtime": "kata"' to /etc/docker/daemon.json and restart the docker daemon
+- to set Kata as the default runtime, add '"default-runtime": "kata"' to /etc/docker/daemon.json and restart the docker daemon
"""
{
"default-runtime": "kata",
@@ -29,6 +29,14 @@ $ docker run --runtime=kata --rm busybox date
},
}
}
+
+"""
+
+- to run Kata with Firecracker, due to Firecracker's limitations, you have to set your Docker storage driver (ref: https://docs.docker.com/storage/storagedriver/select-storage-driver/ ) to 'devicemapper'
+"""
+{
+ "storage-driver": "devicemapper"
+}
"""
EOF