From d50a3c986b90c3efe05fc5eaf4c760245d6184ad Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Fri, 10 Oct 2014 08:16:10 -0700 Subject: [PATCH] Fix links. --- examples/walkthrough/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/walkthrough/README.md b/examples/walkthrough/README.md index 724f2f295d7..37df0c8c0a2 100644 --- a/examples/walkthrough/README.md +++ b/examples/walkthrough/README.md @@ -3,7 +3,7 @@ ## Pods The first atom of Kubernetes is a _pod_. A pod is a collection of containers that are symbiotically group. -See [pods](docs/pods.md) for more details. +See [pods](../../docs/pods.md) for more details. ### Intro @@ -23,7 +23,7 @@ desiredState: A pod definition is a declaration of a _desired state_. Desired state is a really important part of Kubernetes. Many things present a desired state to the system, and it is Kubernetes' responsibility to make sure that the current state matches the desired state. For example, when you create a Pod, you declare that you want the containers in it to be running. If the containers happen to not be running (program failure, ...), Kubernetes will continue to (re)create them for you until you delete the Pod. -See the [design document](DESIGN.md) for more details. +See the [design document](../../DESIGN.md) for more details. ### Volumes @@ -75,7 +75,7 @@ In Kubernetes, ```emptyDir``` Volumes live for the lifespan of the Pod, which is If you want to mount a directory that already exists in the file system (e.g. ```/var/logs```) you can use the ```hostDir``` directive. -See [volumes](docs/volumes.md) for more details. +See [volumes](../../docs/volumes.md) for more details. ### Multiple Containers