k3s/docs/design
Kubernetes Submit Queue 1b184f29d0 Merge pull request #29287 from caitong93/patch-2
Automatic merge from submit-queue

Fix a typo in resource-qos design doc
2016-08-29 12:15:31 -07:00
..
clustering Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
README.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
access.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
admission_control.md New plugin must be imported 2016-08-23 11:51:46 -04:00
admission_control_limit_range.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
admission_control_resource_quota.md Removed non-md files from docs. Moved doc yamls to test/fixtures. 2016-08-25 15:09:27 -07:00
architecture.dia Adjust the architecture diagram 2015-09-02 14:48:04 +00:00
architecture.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
architecture.png Adjust the architecture diagram 2015-09-02 14:48:04 +00:00
architecture.svg Adjust the architecture diagram 2015-09-02 14:48:04 +00:00
aws_under_the_hood.md correct specifies in aws_under_the_hood 2016-08-19 13:36:37 +08:00
clustering.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
command_execution_port_forwarding.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
configmap.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
control-plane-resilience.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
daemon.md Give the complete and correct path to client/apiserver related 2016-07-22 15:12:06 +08:00
downward_api_resources_limits_requests.md correct object in downward_api_resources_limits_requests 2016-08-19 13:53:24 +08:00
enhance-pluggable-policy.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
event_compression.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
expansion.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
extending-api.md Merge pull request #29431 from AdoHe/third_party_doc 2016-08-11 11:44:37 -07:00
federated-services.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
federation-phase-1.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
horizontal-pod-autoscaler.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
identifiers.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
indexed-job.md typo: correct spell 2016-08-17 14:17:01 +08:00
metadata-policy.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
namespaces.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
networking.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
nodeaffinity.md fix a typo in nodeaffinity 2016-08-10 15:43:27 +08:00
persistent-storage.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
podaffinity.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
principles.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
resource-qos.md Merge pull request #29287 from caitong93/patch-2 2016-08-29 12:15:31 -07:00
resources.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
scheduler_extender.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
seccomp.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
secrets.md Update secrets.md 2016-08-07 15:46:17 +02:00
security.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
security_context.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
selector-generation.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
service_accounts.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
simple-rolling-update.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
taint-toleration-dedicated.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00
ubernetes-cluster-state.png RFC design docs for Cluster Federation/Ubernetes. 2016-03-03 15:49:47 -08:00
ubernetes-design.png RFC design docs for Cluster Federation/Ubernetes. 2016-03-03 15:49:47 -08:00
ubernetes-scheduling.png RFC design docs for Cluster Federation/Ubernetes. 2016-03-03 15:49:47 -08:00
versioning.md Fix broken warning image link in docs 2016-07-15 10:44:58 +01:00

README.md

WARNING WARNING WARNING WARNING WARNING

PLEASE NOTE: This document applies to the HEAD of the source tree

If you are using a released version of Kubernetes, you should refer to the docs that go with that version.

The latest release of this document can be found [here](http://releases.k8s.io/release-1.3/docs/design/README.md).

Documentation for other releases can be found at releases.k8s.io.

Kubernetes Design Overview

Kubernetes is a system for managing containerized applications across multiple hosts, providing basic mechanisms for deployment, maintenance, and scaling of applications.

Kubernetes establishes robust declarative primitives for maintaining the desired state requested by the user. We see these primitives as the main value added by Kubernetes. Self-healing mechanisms, such as auto-restarting, re-scheduling, and replicating containers require active controllers, not just imperative orchestration.

Kubernetes is primarily targeted at applications composed of multiple containers, such as elastic, distributed micro-services. It is also designed to facilitate migration of non-containerized application stacks to Kubernetes. It therefore includes abstractions for grouping containers in both loosely coupled and tightly coupled formations, and provides ways for containers to find and communicate with each other in relatively familiar ways.

Kubernetes enables users to ask a cluster to run a set of containers. The system automatically chooses hosts to run those containers on. While Kubernetes's scheduler is currently very simple, we expect it to grow in sophistication over time. Scheduling is a policy-rich, topology-aware, workload-specific function that significantly impacts availability, performance, and capacity. The scheduler needs to take into account individual and collective resource requirements, quality of service requirements, hardware/software/policy constraints, affinity and anti-affinity specifications, data locality, inter-workload interference, deadlines, and so on. Workload-specific requirements will be exposed through the API as necessary.

Kubernetes is intended to run on a number of cloud providers, as well as on physical hosts.

A single Kubernetes cluster is not intended to span multiple availability zones. Instead, we recommend building a higher-level layer to replicate complete deployments of highly available applications across multiple zones (see the multi-cluster doc and cluster federation proposal for more details).

Finally, Kubernetes aspires to be an extensible, pluggable, building-block OSS platform and toolkit. Therefore, architecturally, we want Kubernetes to be built as a collection of pluggable components and layers, with the ability to use alternative schedulers, controllers, storage systems, and distribution mechanisms, and we're evolving its current code in that direction. Furthermore, we want others to be able to extend Kubernetes functionality, such as with higher-level PaaS functionality or multi-cluster layers, without modification of core Kubernetes source. Therefore, its API isn't just (or even necessarily mainly) targeted at end users, but at tool and extension developers. Its APIs are intended to serve as the foundation for an open ecosystem of tools, automation systems, and higher-level API layers. Consequently, there are no "internal" inter-component APIs. All APIs are visible and available, including the APIs used by the scheduler, the node controller, the replication-controller manager, Kubelet's API, etc. There's no glass to break -- in order to handle more complex use cases, one can just access the lower-level APIs in a fully transparent, composable manner.

For more about the Kubernetes architecture, see architecture.

Analytics