Auto-fixed docs

This commit is contained in:
Daniel Smith
2015-07-09 18:02:10 -07:00
parent c4aab16b04
commit c03a788c67
43 changed files with 86 additions and 89 deletions

View File

@@ -3,7 +3,7 @@
**Authorization**
:Kubernetes does not currently have an authorization system. Anyone with the cluster password can do anything. We plan
to add sophisticated authorization, and to make it pluggable. See the [access control design doc](./design/access.md) and
to add sophisticated authorization, and to make it pluggable. See the [access control design doc](design/access.md) and
[this issue](https://github.com/GoogleCloudPlatform/kubernetes/issues/1430).
**Annotation**
@@ -11,11 +11,11 @@ to add sophisticated authorization, and to make it pluggable. See the [access c
non-identifying metadata associated with an object, such as provenance information. Not indexed.
**Image**
: A [Docker Image](https://docs.docker.com/userguide/dockerimages/). See [images](./images.md).
: A [Docker Image](https://docs.docker.com/userguide/dockerimages/). See [images](images.md).
**Label**
: A key/value pair conveying user-defined identifying attributes of an object, and used to form sets of related objects, such as
pods which are replicas in a load-balanced service. Not intended to hold large or non-human-readable data. See [labels](./labels.md).
pods which are replicas in a load-balanced service. Not intended to hold large or non-human-readable data. See [labels](labels.md).
**Name**
: A user-provided name for an object. See [identifiers](identifiers.md).
@@ -26,7 +26,7 @@ so you do not have to type it all the time. Namespaces allow multiple projects t
**Pod**
: A collection of containers which will be scheduled onto the same node, which share and an IP and port space, and which
can be created/destroyed together. See [pods](./pods.md).
can be created/destroyed together. See [pods](pods.md).
**Replication Controller**
: A _replication controller_ ensures that a specified number of pod "replicas" are running at any one time. Both allows
@@ -43,7 +43,7 @@ for easy scaling of replicated systems, and handles restarting of a Pod when the
service. See [labels](labels.md).
**Service**
: A load-balanced set of `pods` which can be accessed via a single stable IP address. See [services](./services.md).
: A load-balanced set of `pods` which can be accessed via a single stable IP address. See [services](services.md).
**UID**
: An identifier on all Kubernetes objects that is set by the Kubernetes API server. Can be used to distinguish between historical