k3s/docs
Eric Tune abc48dcdeb Merge pull request #3213 from unicell/typo-fix
Typo fix in docs/volumes.md
2015-01-05 08:34:52 -08:00
..
design Version 2.0 of proposal 2014-12-18 13:56:34 -05:00
devel Fix broken flaky-tests.md documentation link 2014-12-22 15:53:32 +01:00
getting-started-guides KUBERNETES_MASTER needs to include scheme for cluster/* scripts to work 2014-12-31 18:01:24 +08:00
man Fix minion_cache_ttl and minion_regexp flag change. 2014-11-02 00:36:34 -04:00
README.md Update docs/README.md: add TOC / doc descriptions. 2014-12-15 10:43:17 -08:00
accessing_the_api.md Add a third port which has HTTPS and auth(n,z) 2014-11-10 15:16:46 -08:00
annotations.md Label documentation improvements. Add annotations documentation. 2014-10-15 22:38:00 +00:00
api-conventions.md Documentation improvements. Fixes #2004, #2115, #2171. 2014-11-17 21:32:44 +00:00
architecture.dia
architecture.png
architecture.svg
authentication.md Basic ACL file. 2014-11-05 16:06:22 -08:00
authorization.md typo in authorization.md 2014-12-16 09:21:09 -05:00
cli.md Adding link to logging conventions doc 2014-11-20 15:29:27 -08:00
client-libraries.md added php client library reference 2014-11-17 16:44:36 +00:00
container-environment.md Documentation improvements. Fixes #2004, #2115, #2171. 2014-11-17 21:32:44 +00:00
dns.md fix link to skydns docs 2014-11-20 15:31:09 -05:00
glossary.md Separated user, dev, and design docs. 2014-10-31 08:35:53 -07:00
identifiers.md Separated user, dev, and design docs. 2014-10-31 08:35:53 -07:00
images.md Document images. 2014-10-09 13:40:56 -07:00
labels.md Separated user, dev, and design docs. 2014-10-31 08:35:53 -07:00
logging.md Mention Fluentd in the logging doc, as originally requested by Kiyoto in 2014-12-11 14:29:52 -08:00
namespaces.md Separated user, dev, and design docs. 2014-10-31 08:35:53 -07:00
networking.md Fix grammar 2014-11-09 22:12:55 -05:00
node.md fixed resources field 2014-12-10 23:04:33 -08:00
overview.md Documentation improvements. Fixes #2004, #2115, #2171. 2014-11-17 21:32:44 +00:00
ovs-networking.md ovs networking document 2014-09-08 17:06:25 -07:00
ovs-networking.png ovs networking document 2014-09-08 17:06:25 -07:00
pod-states.md Add a doc on pod states 2014-09-23 08:40:17 -07:00
pods.md Documentation improvements. Fixes #2004, #2115, #2171. 2014-11-17 21:32:44 +00:00
replication-controller.md Add documentation of replication controller. 2014-10-01 23:22:10 +00:00
resources.md Document that the resource model has not yet been implemented. 2014-12-01 18:07:25 +00:00
roadmap.md Update roadmap based on discussion at contributor meetup. 2014-12-08 18:54:34 +00:00
salt.md Typo fix 2014-11-23 02:31:40 +01:00
services.md Clarify format of service environment variables. Fixes #1936. 2014-11-24 18:01:56 +00:00
services_detail.png Add and update docs. 2014-10-16 08:36:47 -07:00
services_detail.svg Add and update docs. 2014-10-16 08:36:47 -07:00
services_overview.png Add and update docs. 2014-10-16 08:36:47 -07:00
services_overview.svg Add and update docs. 2014-10-16 08:36:47 -07:00
ux.md Add script to build ui assets, rebuild with latest go-bindata 2014-12-04 22:38:00 -08:00
volumes.md Merge pull request #3213 from unicell/typo-fix 2015-01-05 08:34:52 -08:00

README.md

Kubernetes Documentation

Getting started guides are in getting-started-guides.

There are example files and walkthroughs in the examples folder.

If you're developing Kubernetes, docs are in the devel folder.

Design docs are in design.

Primary concepts

  • Overview (overview.md): A brief overview of Kubernetes concepts.

  • Nodes (node.md): A node is a worker machine in Kubernetes.

  • Pods (pods.md): A pod is a tightly-coupled group of containers with shared volumes.

  • The Life of a Pod (pod-states.md): Covers the intersection of pod states, the PodStatus type, the life-cycle of a pod, events, restart policies, and replication controllers.

  • Replication Controllers (replication-controller.md): A replication controller ensures that a specified number of pod "replicas" are running at any one time.

  • Services (services.md): A Kubernetes service is an abstraction which defines a logical set of pods and a policy by which to access them.

  • Volumes (volumes.md): A Volume is a directory, possibly with some data in it, which is accessible to a Container.

  • Labels (labels.md): Labels are key/value pairs that are attached to objects, such as pods. Labels can be used to organize and to select subsets of objects.

  • Accessing the API (accessing_the_api.md): Ports, IPs, proxies, and firewall rules.

  • Kubernetes Web Interface (ux.md): Accessing the Kubernetes web user interface.

  • Kubecfg Command Line Interface (cli.md): The kubecfg command line reference.

  • Roadmap (roadmap.md): The set of supported use cases, features, docs, and patterns that are required before Kubernetes 1.0.

  • Glossary (glossary.md): Terms and concepts.

Further reading

  • Annotations (annotations.md): Attaching arbitrary non-identifying metadata.

  • API Conventions (api-conventions.md): Defining the verbs and resources used in the Kubernetes API.

  • Authentication Plugins (authentication.md): The current and planned states of authentication tokens.

  • Authorization Plugins (authorization.md): Authorization applies to all HTTP requests on the main apiserver port. This doc explains the available authorization implementations.

  • API Client Libraries (client-libraries.md): A list of existing client libraries, both supported and user-contributed.

  • Kubernetes Container Environment (container-environment.md): Describes the environment for Kubelet managed containers on a Kubernetes node.

  • DNS Integration with SkyDNS (dns.md): Resolving a DNS name directly to a Kubernetes service.

  • Identifiers (identifiers.md): Names and UIDs explained.

  • Images (images.md): Information about container images and private registries.

  • Logging (logging.md): Pointers to logging info.

  • Namespaces (namespaces.md): Namespaces help different projects, teams, or customers to share a kubernetes cluster.

  • Networking (networking.md): Pod networking overview.

  • OpenVSwitch GRE/VxLAN networking (ovs-networking.md): Using OpenVSwitch to set up networking between pods across Kubernetes nodes.

  • The Kubernetes Resource Model (resources.md): Provides resource information such as size, type, and quantity to assist in assigning Kubernetes resources appropriately.

  • Using Salt to configure Kubernetes (salt.md): The Kubernetes cluster can be configured using Salt.