Fix some links...

pull/6/head
Brendan Burns 2014-10-21 07:11:02 -07:00
parent 0714de2284
commit a4f51bfd88
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ Having already learned about Pods and how to create them, ou may be struck by an
cluster/kubecfg.sh -l name=nginx list pods
```
Lists all pods who name label matches 'nginx'. Labels are discussed in detail (elsewhere)[https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/labels.md], but they are a core concept for two additional building blocks for Kubernetes, Replication Controllers and Services
Lists all pods who name label matches 'nginx'. Labels are discussed in detail [elsewhere](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/labels.md), but they are a core concept for two additional building blocks for Kubernetes, Replication Controllers and Services
### Replication Controllers
@ -70,7 +70,7 @@ selector:
containerPort: 80
```
When created, each service is assigned a unique IP address. This address is tied to the lifespan of the Service, and will not change wile the Service is alive. Pods can be configured to talk to the service, and know that communication to the service will be automatically load-balanced out to some pod that is a member of the set identified by the label selector in the Service. Services are described in detail (elsewhere)[https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/services.md].
When created, each service is assigned a unique IP address. This address is tied to the lifespan of the Service, and will not change wile the Service is alive. Pods can be configured to talk to the service, and know that communication to the service will be automatically load-balanced out to some pod that is a member of the set identified by the label selector in the Service. Services are described in detail [elsewhere](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/services.md).
### Health Checking
When I write code it never crashes, right? Sadly the [kubernetes issues list](https://github.com/GoogleCloudPlatform/kubernetes/issues) indicates otherwise...
@ -151,4 +151,4 @@ desiredState:
```
### What's next?
For a complete application see the [guestbook example](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples/guestbook)
For a complete application see the [guestbook example](https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples/guestbook)