mirror of https://github.com/k3s-io/k3s
Adding a TOC
parent
d9e19a5525
commit
f388157ab5
28
DESIGN.md
28
DESIGN.md
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue