From 3823bed2a3a1b6fe5a573cfadb79b52bfd2ee07f Mon Sep 17 00:00:00 2001 From: Rob Young Date: Fri, 25 Aug 2017 18:36:38 +0100 Subject: [PATCH] Link to individual concepts on concept overview (#5202) On the concept overview page there are lists of example concepts. Currently only two are linked to (and one of those to an old location). This change adds links to all of the concepts so that a new user quickly see some exaple concepts. --- docs/concepts/index.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/concepts/index.md b/docs/concepts/index.md index de0a601133..a4cd156b00 100644 --- a/docs/concepts/index.md +++ b/docs/concepts/index.md @@ -21,18 +21,18 @@ Kubernetes contains a number of abstractions that represent the state of your sy The basic Kubernetes objects include: -* [Pod](/docs/concepts/abstractions/pod/) -* Service -* Volume -* Namespace +* [Pod](/docs/concepts/workload/pods/pod-overview/) +* [Service](/docs/concepts/services-networking/service/) +* [Volume](/docs/concepts/storage/volumes/) +* [Namespace](/docs/concepts/overview/working-with-objects/namespaces/) In addition, Kubernetes contains a number of higher-level abstractions called Controllers. Controllers build upon the basic objects, and provide additional functionality and convenience features. They include: -* ReplicaSet -* Deployment -* [StatefulSet](/docs/concepts/abstractions/controllers/statefulsets/) -* DaemonSet -* Job +* [ReplicaSet](/docs/concepts/workloads/controllers/replicaset/) +* [Deployment](/docs/concepts/workloads/controllers/deployment/) +* [StatefulSet](/docs/concepts/workloads/controllers/statefulsets/) +* [DaemonSet](/docs/concepts/workloads/controllers/daemonset/) +* [Job](/docs/concepts/workloads/controllers/jobs-run-to-completion/) ## Kubernetes Control Plane