From 07a068549942025ea4987b203eb0dbec2c1df2f6 Mon Sep 17 00:00:00 2001 From: Yu-Ju Hong Date: Thu, 4 Jan 2018 18:28:14 -0800 Subject: [PATCH] Fix typos and broken links in docs Signed-off-by: Yu-Ju Hong --- README.md | 2 +- docs/crictl.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f1dad6396..9faef470d 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ specifications as appropriate. 1. Install development libraries: * **libseccomp development library.** Required by cri-containerd and runc seccomp support. `libseccomp-dev` (Ubuntu, Debian) / `libseccomp-devel` (Fedora, CentOS, RHEL). On releases of Ubuntu <=Trusty and Debian <=jessie a -backport version of `libsecomp-dev` is required. See [travis.yml](.travis.yml) for an example on trusty. +backport version of `libseccomp-dev` is required. See [travis.yml](.travis.yml) for an example on trusty. * **libapparmor development library.** Required by cri-containerd and runc apparmor support. To use apparmor on Debian, Ubuntu, and related distributions the installation of `libapparmor-dev` is required. * **btrfs development library.** Required by containerd btrfs support. `btrfs-tools`(Ubuntu, Debian) / `btrfs-progs-devel`(Fedora, CentOS, RHEL) 2. Install other dependencies: diff --git a/docs/crictl.md b/docs/crictl.md index f20d115de..c0dc68b53 100644 --- a/docs/crictl.md +++ b/docs/crictl.md @@ -13,7 +13,7 @@ or `crictl` please make sure the issue has not already been submitted. If you have not already installed crictl please install the version compatible with the `cri-containerd` you are using. If you are a user, your deployment should have installed crictl for you. If not, get it from your release tarball. -If you are a developer the current version of crictl is specified [here](./hack/version). +If you are a developer the current version of crictl is specified [here](../hack/versions). A helper command has been included to install the dependencies at the right version: ```console $ make install.deps @@ -23,8 +23,8 @@ so you don't have to repeatedly specify the runtime sock used to connect crictl to the container runtime: ```console $ cat /etc/crictl.yaml -runtime-endpoint: /run/containerd/containerd.sock -image-endpoint: /run/containerd/containerd.sock +runtime-endpoint: /var/run/cri-containerd.sock +image-endpoint: /var/run/cri-containerd.sock timeout: 10 debug: true ```