Make examples links be relative
This commit is contained in:
@@ -77,11 +77,11 @@ By default, `kubectl` will use the `kubeconfig` file generated during the cluste
|
||||
For more information, please read [kubeconfig files](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/kubeconfig-file.md)
|
||||
|
||||
### Examples
|
||||
See [a simple nginx example](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/simple-nginx.md) to try out your new cluster.
|
||||
See [a simple nginx example](../../examples/simple-nginx.md) to try out your new cluster.
|
||||
|
||||
The "Guestbook" application is another popular example to get started with Kubernetes: [guestbook example](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples/guestbook)
|
||||
The "Guestbook" application is another popular example to get started with Kubernetes: [guestbook example](../../examples/guestbook)
|
||||
|
||||
For more complete applications, please look in the [examples directory](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples)
|
||||
For more complete applications, please look in the [examples directory](../../examples)
|
||||
|
||||
## Tearing down the cluster
|
||||
Make sure the environment variables you used to provision your cluster are still exported, then call the following script inside the
|
||||
|
@@ -163,7 +163,7 @@ centos-minion <none> Ready
|
||||
|
||||
**The cluster should be running! Launch a test pod.**
|
||||
|
||||
You should have a functional cluster, check out [101](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md)!
|
||||
You should have a functional cluster, check out [101](../../../examples/walkthrough/README.md)!
|
||||
|
||||
|
||||
[]()
|
||||
|
@@ -189,7 +189,7 @@ You then should be able to access it from anywhere via the Azure virtual IP for
|
||||
|
||||
You now have a full-blow cluster running in Azure, congrats!
|
||||
|
||||
You should probably try deploy other [example apps](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples) or write your own ;)
|
||||
You should probably try deploy other [example apps](../../../../examples) or write your own ;)
|
||||
|
||||
## Tear down...
|
||||
|
||||
|
@@ -190,7 +190,7 @@ $ kubectl delete -f node.json
|
||||
|
||||
**The cluster should be running! Launch a test pod.**
|
||||
|
||||
You should have a functional cluster, check out [101](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/walkthrough/README.md)!
|
||||
You should have a functional cluster, check out [101](../../../examples/walkthrough/README.md)!
|
||||
|
||||
|
||||
[]()
|
||||
|
@@ -178,7 +178,7 @@ We can add minion units like so:
|
||||
|
||||
## Launch the "k8petstore" example app
|
||||
|
||||
The [k8petstore example](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/k8petstore) is available as a
|
||||
The [k8petstore example](../../examples/k8petstore) is available as a
|
||||
[juju action](https://jujucharms.com/docs/devel/actions).
|
||||
|
||||
juju action do kubernetes-master/0
|
||||
|
@@ -120,7 +120,7 @@ NAME LABELS STATUS
|
||||
|
||||
```
|
||||
|
||||
Also you can run kubernetes [guest-example](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples/guestbook) to build a redis backend cluster on the k8s.
|
||||
Also you can run kubernetes [guest-example](../../examples/guestbook) to build a redis backend cluster on the k8s.
|
||||
|
||||
|
||||
#### Deploy addons
|
||||
|
@@ -8,7 +8,7 @@ A `PersistentVolume` (PV) is a piece of networked storage in the cluster that ha
|
||||
|
||||
A `PersistentVolumeClaim` (PVC) is a request for storage by a user. It is similar to a pod. Pods consume node resources and PVCs consume PV resources. Pods can request specific levels of resources (CPU and Memory). Claims can request specific size and access modes (e.g, can be mounted once read/write or many times read-only).
|
||||
|
||||
Please see the [detailed walkthrough with working examples](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples/persistent-volumes).
|
||||
Please see the [detailed walkthrough with working examples](../examples/persistent-volumes).
|
||||
|
||||
|
||||
## Lifecycle of a volume and claim
|
||||
|
Reference in New Issue
Block a user