diff --git a/docs/getting-started.md b/docs/getting-started.md index 9ba285215..c27d3fb9b 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -212,10 +212,6 @@ configuration file has the following fields: `firecracker` located in its working directory. A fully-qualified path to the `firecracker` binary is recommended, as the working directory typically changes every execution when run by containerd. -* `socket_path` (required) - A path where a socket file should be created for - communicating with the Firecracker API. A relative path like - `./firecracker.sock` is recommended so that the socket is created in the - temporary working directory allocated by containerd. * `kernel_image_path` (required) - A path where the kernel image file is located. A fully-qualified path is recommended. * `kernel_args` (required) - Arguments for the kernel command line. @@ -241,7 +237,6 @@ configuration file has the following fields: ```json { "firecracker_binary_path": "/usr/local/bin/firecracker", - "socket_path": "./firecracker.sock", "kernel_image_path": "/var/lib/firecracker-containerd/runtime/hello-vmlinux.bin", "kernel_args": "console=ttyS0 noapic reboot=k panic=1 pci=off nomodules rw", "root_drive": "/var/lib/firecracker-containerd/runtime/hello-rootfs.ext4", diff --git a/docs/quickstart.md b/docs/quickstart.md index 4171afb64..6c08f5597 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -138,7 +138,6 @@ sudo mkdir -p /etc/containerd sudo tee -a /etc/containerd/firecracker-runtime.json <