Skip to content

Commit

Permalink
Adding a TOC
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeJeffrey committed Jun 9, 2014
1 parent d9e19a5 commit f388157
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions DESIGN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Kubernetes Design Overview

<ul class="toc">
<li><a href="#overview">Overview</a></li>
<li><a href="#key_concept_container_pod">Key Concept: Container Pod</a></li>
<li><a href="#the_kubernetes_node">The Kubernetes Node</a>
<ul class="toc">
<li><a href="#kubelet">Kubelet</a></li>
<li><a href="#kubernetes_proxy">Kubernetes Proxy</a></li>
</ul>
</li>
<li><a href="#the_kubernetes_master">The Kubernetes Master</a>
<ul class="toc">
<li><a href="#etcd">etcd</a></li>
<li><a href="#kubernetes_api_server">Kubernetes API Server</a></li>
<li><a href="#kubernetes_controller_manager_server">Kubernetes Controller Manager Server</a></li>
<li><a href="#key_concept_labels">Key Concept: Labels</a></li>
</ul>
</li>
<li><a href="#network_model">Network Model</a></li>
<li><a href="#release_process">Release Process</a></li>
<li><a href="#gce_cluster_configuration">GCE Cluster Configuration</a>
<ul class="toc">
<li><a href="#cluster_security">Cluster Security</a></li>
</ul>
</li>
</ul>

## Overview

Kubernetes builds on top of [Docker](http://www.docker.io) to construct a clustered container scheduling service. The goals of the project are to enable users to ask a Kubernetes cluster to run a set of containers. The system will automatically pick a worker node to run those containers on.

As container based applications and systems get larger, some tools are provided to facilitate sanity. This includes ways for containers to find and communicate with each other and ways to work with and manage sets of containers that do similar work.
Expand Down

0 comments on commit f388157

Please sign in to comment.