From 926f605f68ba7fd2158032425c2c6602be799b53 Mon Sep 17 00:00:00 2001 From: Samuel Karp Date: Wed, 20 Mar 2019 17:29:43 -0700 Subject: [PATCH] runtime: remove "console" field from documentation The console field was already removed, but stale documentation continued to reference it. This commit removes the stale documentation. Related: https://github.com/firecracker-microvm/firecracker-containerd/issues/59 Signed-off-by: Samuel Karp --- docs/getting-started.md | 4 ---- docs/quickstart.md | 1 - runtime/README.md | 3 --- runtime/config.json.example | 1 - tools/docker/firecracker-runtime.json | 1 - 5 files changed, 10 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 1dc8185fa..897073a82 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -223,9 +223,6 @@ configuration file has the following fields: * `cpu_template` (required) - The Firecracker CPU emulation template. Supported values are "C3" and "T2". * `additional_drives` (unused) -* `console` (optional) - How the console device should be handled. Supported - values are "" (blank), "stdio", and "xterm". Setting "xterm" will launch a - new xterm instance and requires a running X server. * `log_fifo` (optional) - Named pipe where Firecracker logs should be delivered. * `log_level` (optional) - Log level for the Firecracker logs * `metrics_fifo` (optional) - Named pipe where Firecracker metrics should be @@ -244,7 +241,6 @@ configuration file has the following fields: "root_drive": "/var/lib/firecracker-containerd/runtime/hello-rootfs.ext4", "cpu_count": 1, "cpu_template": "T2", - "console": "stdio", "log_fifo": "/tmp/fc-logs.fifo", "log_level": "Debug", "metrics_fifo": "/tmp/fc-metrics.fifo" diff --git a/docs/quickstart.md b/docs/quickstart.md index ce5a40400..1393e942d 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -142,7 +142,6 @@ sudo tee -a /etc/containerd/firecracker-runtime.json <