Skip to content

runtime: remove "console" field from documentation #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
1 change: 0 additions & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ sudo tee -a /etc/containerd/firecracker-runtime.json <<EOF
"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"
Expand Down
3 changes: 0 additions & 3 deletions runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,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
Expand Down
1 change: 0 additions & 1 deletion runtime/config.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"additional_drives": {
"./shim.img": "rw"
},
"console": "stdio",
"log_fifo": "/tmp/fc-logs.fifo",
"log_level": "Debug",
"metrics_fifo": "/tmp/fc-metrics.fifo",
Expand Down
1 change: 0 additions & 1 deletion tools/docker/firecracker-runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"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"
Expand Down