diff --git a/README.md b/README.md index 598d394220d8..721aae8ae78d 100644 --- a/README.md +++ b/README.md @@ -127,9 +127,9 @@ The following repositories are used by both the current and first generation Kat | Component | Description | Current | First generation | Notes | |-|-|-|-|-| -| CI | Continuous Integration configuration files and scripts. | [Kata 2.x](https://github.com/kata-containers/ci/tree/main) | [Kata 1.x](https://github.com/kata-containers/ci/tree/master) | | +| CI | Continuous Integration configuration files and scripts. | [Kata 2.x](https://github.com/kata-containers/ci/tree/master) | [Kata 1.x](https://github.com/kata-containers/ci/tree/master) | | | kernel | The Linux kernel used by the hypervisor to boot the guest image. | [Kata 2.x][kernel] | [Kata 1.x][kernel] | Patches are stored in the packaging component. | -| tests | Test code. | [Kata 2.x](https://github.com/kata-containers/tests/tree/main) | [Kata 1.x](https://github.com/kata-containers/tests/tree/master) | Excludes unit tests which live with the main code. | +| tests | Test code. | [Kata 2.x](https://github.com/kata-containers/tests/tree/main) | [Kata 1.x](https://github.com/kata-containers/tests/tree/main) | Excludes unit tests which live with the main code. | | www.katacontainers.io | Contains the source for the [main web site](https://www.katacontainers.io). | [Kata 2.x][github-katacontainers.io] | [Kata 1.x][github-katacontainers.io] | | | ### Packaging and releases diff --git a/docs/how-to/service-mesh.md b/docs/how-to/service-mesh.md index dde04fd1195a..8dedbfed982a 100644 --- a/docs/how-to/service-mesh.md +++ b/docs/how-to/service-mesh.md @@ -76,15 +76,16 @@ is not able to perform a proper setup of the rules. ### Service Mesh Istio -As a reference, you can follow Istio [instructions](https://istio.io/docs/setup/kubernetes/quick-start/#download-and-prepare-for-the-installation). - The following is a summary of what you need to install Istio on your system: + ``` $ curl -L https://git.io/getLatestIstio | sh - $ cd istio-* $ export PATH=$PWD/bin:$PATH ``` +See the [Istio documentation](https://istio.io/docs) for further details. + Now deploy Istio in the control plane of your cluster with the following: ``` $ kubectl apply -f install/kubernetes/istio-demo.yaml diff --git a/docs/use-cases/Nvidia-GPU-passthrough-and-Kata.md b/docs/use-cases/Nvidia-GPU-passthrough-and-Kata.md index 2fed3ffe757b..e4e88c46ac52 100644 --- a/docs/use-cases/Nvidia-GPU-passthrough-and-Kata.md +++ b/docs/use-cases/Nvidia-GPU-passthrough-and-Kata.md @@ -303,4 +303,4 @@ Tue Mar 3 00:03:49 2020 - [Configuring a VM for GPU Pass-Through by Using the QEMU Command Line](https://docs.nvidia.com/grid/latest/grid-vgpu-user-guide/index.html#using-gpu-pass-through-red-hat-el-qemu-cli) - https://gitlab.com/nvidia/container-images/driver/-/tree/master -- https://github.com/NVIDIA/nvidia-docker/wiki/Driver-containers-(Beta) +- https://github.com/NVIDIA/nvidia-docker/wiki/Driver-containers diff --git a/src/runtime/README.md b/src/runtime/README.md index 1d58e12fbfaf..8830ab1e9273 100644 --- a/src/runtime/README.md +++ b/src/runtime/README.md @@ -150,7 +150,7 @@ $ kata-runtime env For detailed information and analysis on obtaining logs for other system components, see the documentation for the -[`kata-log-parser`](https://github.com/kata-containers/tests/tree/master/cmd/log-parser) +[`kata-log-parser`](https://github.com/kata-containers/tests/tree/main/cmd/log-parser) tool. For runtime logs, see the following sections for the CRI-O and containerd shimv2 based runtimes. diff --git a/tools/packaging/release/README.md b/tools/packaging/release/README.md index bc7518077f25..46404c35fb63 100644 --- a/tools/packaging/release/README.md +++ b/tools/packaging/release/README.md @@ -34,6 +34,8 @@ $ ./update-repository-version.sh -h To update project version for Kata Containers, use the following: ```bash +# Set to the required version +$ new_version="a.b.c" $ make bump-kata-version NEW_VERSION="${new_version}" ```