summaryrefslogtreecommitdiff
path: root/architecture.md
diff options
context:
space:
mode:
authorDaniel Smith <dbsmith@google.com>2015-07-09 13:33:48 -0700
committerDaniel Smith <dbsmith@google.com>2015-07-13 18:24:11 -0700
commit9b2fc6d4e38015acae5713a75e7e9e0ea07bb549 (patch)
tree3ea55074157f15102aaee2b5ad87f3c629af6db6 /architecture.md
parentd3293eb75835fbdb3f50dde82e513eff752ca82d (diff)
move admin related docs into docs/admin
Diffstat (limited to 'architecture.md')
-rw-r--r--architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/architecture.md b/architecture.md
index 71d606a1..22d61b27 100644
--- a/architecture.md
+++ b/architecture.md
@@ -33,7 +33,7 @@ The **Kubelet** manages [pods](../pods.md) and their containers, their images, t
Each node also runs a simple network proxy and load balancer (see the [services FAQ](https://github.com/GoogleCloudPlatform/kubernetes/wiki/Services-FAQ) for more details). This reflects `services` (see [the services doc](../services.md) for more details) as defined in the Kubernetes API on each node and can do simple TCP and UDP stream forwarding (round robin) across a set of backends.
-Service endpoints are currently found via [DNS](../dns.md) or through environment variables (both [Docker-links-compatible](https://docs.docker.com/userguide/dockerlinks/) and Kubernetes {FOO}_SERVICE_HOST and {FOO}_SERVICE_PORT variables are supported). These variables resolve to ports managed by the service proxy.
+Service endpoints are currently found via [DNS](../admin/dns.md) or through environment variables (both [Docker-links-compatible](https://docs.docker.com/userguide/dockerlinks/) and Kubernetes {FOO}_SERVICE_HOST and {FOO}_SERVICE_PORT variables are supported). These variables resolve to ports managed by the service proxy.
## The Kubernetes Control Plane