Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit 65ee6be

Browse files
committed
docs: Fix typos and formatting
Correct spelling mistakes and formatting issues. Fixes: #499. Signed-off-by: James O. D. Hunt <[email protected]>
1 parent da47d1b commit 65ee6be

7 files changed

+12
-12
lines changed

Documentation-Requirements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ utility.
152152

153153
<pre>
154154

155-
- Long lines should not span across multiple lines by using the '`\`'
155+
- Long lines should not span across multiple lines by using the `\`
156156
continuation character.
157157

158158
GitHub automatically renders such blocks with scrollbars. Consequently,

Releases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The detailed steps to follow to create a new release are specified in the [Relea
7171

7272
The Release Owner must follow the following process, which is designed to ensure clarity, quality, stability, and auditability of each release:
7373

74-
- Raise a [new github issue in the kata-containers repository](https://github.com/kata-containers/kata-containers/issues/new) and assign to themselves.
74+
- Raise a [new GitHub issue in the `kata-containers` repository](https://github.com/kata-containers/kata-containers/issues/new) and assign to themselves.
7575

7676
This issue is used to track the progress of the release with maximum visibility.
7777

design/architecture.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ QEMU version called [`qemu-lite`](https://github.com/kata-containers/qemu/tree/q
139139
custom machine accelerators that are not available in the upstream version of QEMU.
140140
These custom machine accelerators are described below.
141141

142-
- nofw: this machine accelerator is x86 specific and only supported by `pc` and `q35`
142+
- `nofw`: this machine accelerator is x86 specific and only supported by `pc` and `q35`
143143
machine types. `nofw` is used to boot an ELF format kernel by skipping the BIOS/firmware
144144
in the guest. This custom machine accelerator improves boot time significantly.
145-
- static-prt: this machine accelerator is x86 specific and only supported by `pc`
145+
- `static-prt`: this machine accelerator is x86 specific and only supported by `pc`
146146
and `q35` machine types. `static-prt` is used to reduce the interpretation burden
147147
for guest ACPI component.
148148

@@ -406,7 +406,7 @@ process.
406406
and signals and thus acts as an encapsulation layer between the container process
407407
reaper and the `kata-agent`. `kata-shim`:
408408

409-
- Connects to `kata-proxy` on a unix domain socket. The socket url is passed from
409+
- Connects to `kata-proxy` on a Unix domain socket. The socket URL is passed from
410410
`kata-runtime` to `kata-shim` when the former spawns the latter along with a
411411
`containerID` and `execID`. The `containerID` and `execID` are used to identify
412412
the true container process that the shim process will be shadowing or representing.

design/kata-design-requirements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Kata Containers runtime **MUST** implement the following command line option
2929
### [CRI](http://blog.kubernetes.io/2016/12/container-runtime-interface-cri-in-kubernetes.html) and [Kubernetes](https://kubernetes.io) support
3030
The Kata Containers project **MUST** provide two interfaces for CRI shims to manage hardware
3131
virtualization based Kubernetes pods and containers:
32-
- An OCI and `runc` compatible command line interface, as decribed in the previous section.
32+
- An OCI and `runc` compatible command line interface, as described in the previous section.
3333
This interface is used by implementations such as [`CRI-O`](http://cri-o.io) and [`cri-containerd`](https://github.com/containerd/cri-containerd), for example.
3434
- A hardware virtualization runtime library API for CRI shims to consume and provide a more
3535
CRI native implementation. The [`frakti`](https://github.com/kubernetes/frakti) CRI shim is an example of such a consumer.

how-to/containerd-kata.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ workloads with isolated sandboxes (i.e. Kata Containers).
4141

4242
As a result, the CRI implementations extended their semantics for the requirements:
4343

44-
- At the beginning, [frakti](https://github.com/kubernetes/frakti) checks the network configuration of a Pod, and
44+
- At the beginning, [Frakti](https://github.com/kubernetes/frakti) checks the network configuration of a Pod, and
4545
treat Pod with `host` network as trusted, while others are treated as untrusted.
4646
- The containerd introduced an annotation for untrusted Pods since [v1.0](https://github.com/containerd/cri/blob/v1.0.0-rc.0/docs/config.md):
4747
```yaml
@@ -143,14 +143,14 @@ The following sections outline how to add Kata Containers to the configurations.
143143
#### Kata Containers as a `RuntimeClass`
144144

145145
For
146-
- Kata Containers v1.5.0 or above (including 1.5.0-rc)
146+
- Kata Containers v1.5.0 or above (including `1.5.0-rc`)
147147
- Containerd v1.2.0 or above
148148
- Kubernetes v1.12.0 or above
149149

150150
The `RuntimeClass` is suggested.
151151

152152
The following configuration includes three runtime classes:
153-
- `plugins.cri.containerd.runtimes.runc`: the runC, and it is the default runtime.
153+
- `plugins.cri.containerd.runtimes.runc`: the runc, and it is the default runtime.
154154
- `plugins.cri.containerd.runtimes.kata`: The function in containerd (reference [the document here](https://github.com/containerd/containerd/tree/master/runtime/v2#binary-naming))
155155
where the dot-connected string `io.containerd.kata.v2` is translated to `containerd-shim-kata-v2` (i.e. the
156156
binary name of the Kata implementation of [Containerd Runtime V2 (Shim API)](https://github.com/containerd/containerd/tree/master/runtime/v2)).

how-to/how-to-use-k8s-with-cri-containerd-and-kata.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Then, make sure the containerd works with the [examples in it](containerd-kata.m
4242
### Install Kubernetes
4343

4444
- Follow the instructions for
45-
[kubeadm installation](https://kubernetes.io/docs/setup/independent/install-kubeadm/).
45+
[`kubeadm` installation](https://kubernetes.io/docs/setup/independent/install-kubeadm/).
4646

4747
- Check `kubeadm` is now available
4848

@@ -130,7 +130,7 @@ $ sudo systemctl daemon-reload
130130
A pod network plugin is needed to allow pods to communicate with each other.
131131
132132
- Install the `flannel` plugin by following the
133-
[Using kubeadm to Create a Cluster](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/#instructions)
133+
[Using `kubeadm` to Create a Cluster](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/#instructions)
134134
guide, starting from the **Installing a pod network** section.
135135
136136
- Create a pod network using flannel

how-to/what-is-vm-cache-and-how-do-I-use-it.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ and purge it by `ctrl-c` it.
4444

4545
### Limitations
4646
* Cannot work with VM templating.
47-
* Only supports the qemu hypervisor.
47+
* Only supports the QEMU hypervisor.

0 commit comments

Comments
 (0)