From 640e4e6eb49247d56474c63e012b533d37845e1f Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Fri, 8 Jun 2018 17:02:39 +0100 Subject: [PATCH] docs: Fix invalid URLs Correct invalid document URLs. Fixes #149. Signed-off-by: James O. D. Hunt --- architecture.md | 4 ++-- zun_kata.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/architecture.md b/architecture.md index c089741175..8d1dc97217 100644 --- a/architecture.md +++ b/architecture.md @@ -39,7 +39,7 @@ The [Kata Containers runtime (kata-runtime)](https://github.com/kata-containers/ is compatible with the [OCI](https://github.com/opencontainers) [runtime specification](https://github.com/opencontainers/runtime-spec) and therefore works seamlessly with the [Docker\* Engine](https://www.docker.com/products/docker-engine) pluggable runtime -architecture. It also supports the [Kubernetes\* Container Runtime Interface (CRI)](https://github.com/kubernetes/kubernetes/tree/master/pkg/kubelet/apis/cri/v1alpha1/runtime) +architecture. It also supports the [Kubernetes\* Container Runtime Interface (CRI)](https://github.com/kubernetes/community/blob/master/contributors/devel/container-runtime-interface.md) through the [CRI-O\*](https://github.com/kubernetes-incubator/cri-o) and [Containerd CRI Plugin\*](https://github.com/containerd/cri) implementation. In other words, you can transparently select between the [default Docker and CRI shim runtime (runc)](https://github.com/opencontainers/runc) @@ -544,7 +544,7 @@ dedicated master node) calls into a compute kubelet. This kubelet instance is responsible for managing the lifecycle of pods within the nodes and eventually relies on a container runtime to handle execution. The kubelet architecture decouples lifecycle management from container execution through the dedicated -[`gRPC`](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/apis/cri/v1alpha1/runtime/api.proto) +[`gRPC`](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/apis/cri/runtime/v1alpha2/api.proto) based [Container Runtime Interface (CRI)](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/node/container-runtime-interface-v1.md). In other words, a kubelet is a CRI client and expects a CRI implementation to diff --git a/zun_kata.md b/zun_kata.md index 8a83bd91bb..2d157a6acd 100644 --- a/zun_kata.md +++ b/zun_kata.md @@ -27,9 +27,9 @@ Containers, start DevStack, and set the environment variables to use ``` sudo mkdir -p /opt/stack sudo chown $USER /opt/stack -git clone https://git.openstack.org/openstack-dev/devstack /opt/stack/devstack +git clone https://github.com/openstack-dev/devstack /opt/stack/devstack HOST_IP="$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')" -git clone https://git.openstack.org/openstack/zun /opt/stack/zun +git clone https://github.com/openstack/zun /opt/stack/zun cat /opt/stack/zun/devstack/local.conf.sample \ | sed "s/HOST_IP=.*/HOST_IP=$HOST_IP/" \ > /opt/stack/devstack/local.conf