From 0f6b9927719322bc20c55132d9b2bd163780d37f Mon Sep 17 00:00:00 2001 From: Jared Date: Wed, 18 Jan 2017 16:50:49 -0800 Subject: [PATCH] fixed all relative links Addresses issue: https://github.com/kubernetes/kubernetes.github.io/issues/1944 --- docs/getting-started-guides/minikube.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index d033f3c48e..a6fc28bfb0 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -27,7 +27,7 @@ Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a ### Requirements * OS X - * [xhyve driver](./DRIVERS.md#xhyve-driver), [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [VMware Fusion](https://www.vmware.com/products/fusion) installation + * [xhyve driver](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md#xhyve-driver), [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [VMware Fusion](https://www.vmware.com/products/fusion) installation * Linux * [VirtualBox](https://www.virtualbox.org/wiki/Downloads) or [KVM](http://www.linux-kvm.org/) installation, * VT-x/AMD-v virtualization must be enabled in BIOS @@ -111,7 +111,7 @@ This will use an alternative minikube ISO image containing both rkt, and Docker, ### Driver plugins -See [DRIVERS](./DRIVERS.md) for details on supported drivers and how to install +See [DRIVERS](https://github.com/kubernetes/minikube/blob/master/DRIVERS.md) for details on supported drivers and how to install plugins, if required. ### Reusing the Docker daemon @@ -150,7 +150,7 @@ Remember to turn off the imagePullPolicy:Always, as otherwise Kubernetes won't u ### Starting a Cluster -The [minikube start](./docs/minikube_start.md) command can be used to start your cluster. +The [minikube start](https://github.com/kubernetes/minikube/blob/master/docs/minikube_start.md) command can be used to start your cluster. This command creates and configures a virtual machine that runs a single-node Kubernetes cluster. This command also configures your [kubectl](http://kubernetes.io/docs/user-guide/kubectl-overview/) installation to communicate with this cluster. @@ -194,12 +194,12 @@ This feature also supports nested structs. To change the `LeaderElection.LeaderE To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.AuthorizationMode=RBAC`. ### Stopping a Cluster -The [minikube stop](./docs/minikube_stop.md) command can be used to stop your cluster. +The [minikube stop](https://github.com/kubernetes/minikube/blob/master/docs/minikube_stop.md) command can be used to stop your cluster. This command shuts down the minikube virtual machine, but preserves all cluster state and data. Starting the cluster again will restore it to it's previous state. ### Deleting a Cluster -The [minikube delete](./docs/minikube_delete.md) command can be used to delete your cluster. +The [minikube delete](https://github.com/kubernetes/minikube/blob/master/docs/minikube_delete.md) command can be used to delete your cluster. This command shuts down and deletes the minikube virtual machine. No data or state is preserved. ## Interacting With your Cluster @@ -288,7 +288,7 @@ In order to have minikube properly start/restart custom addons, place the addon( ## Documentation -For a list of minikube's available commands see the [full CLI docs](./docs/minikube.md). +For a list of minikube's available commands see the [full CLI docs](https://github.com/kubernetes/minikube/blob/master/docs/minikube.md). ## Using Minikube with an HTTP Proxy