From 1057f1bec8927ae3ad15f97ec5d28e77629bbb96 Mon Sep 17 00:00:00 2001 From: Anthony Yeh Date: Tue, 29 Nov 2016 10:18:11 -0800 Subject: [PATCH] Linkify API objects on first mention. --- _includes/default-storage-class-prereqs.md | 4 +++- .../run-replicated-stateful-application.md | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/_includes/default-storage-class-prereqs.md b/_includes/default-storage-class-prereqs.md index 026d57099f..a4747d9032 100644 --- a/_includes/default-storage-class-prereqs.md +++ b/_includes/default-storage-class-prereqs.md @@ -1,4 +1,6 @@ You need to either have a dynamic PersistentVolume provisioner with a default [StorageClass](/docs/user-guide/persistent-volumes/#storageclasses), or [statically provision PersistentVolumes](/docs/user-guide/persistent-volumes/#provisioning) -yourself to satisfy the PersistentVolumeClaims used here. +yourself to satisfy the [PersistentVolumeClaims](/docs/user-guide/persistent-volumes/#persistentvolumeclaims) +used here. + diff --git a/docs/tutorials/replicated-stateful-application/run-replicated-stateful-application.md b/docs/tutorials/replicated-stateful-application/run-replicated-stateful-application.md index 23a714804b..c4ca73c85d 100644 --- a/docs/tutorials/replicated-stateful-application/run-replicated-stateful-application.md +++ b/docs/tutorials/replicated-stateful-application/run-replicated-stateful-application.md @@ -28,9 +28,11 @@ on general patterns for running stateful applications in Kubernetes. * {% include task-tutorial-prereqs.md %} * {% include default-storage-class-prereqs.md %} * This tutorial assumes you are familiar with -[PersistentVolumes](/docs/user-guide/persistent-volumes/) -and [StatefulSets](/docs/concepts/controllers/statefulsets/), -as well as other core concepts like Pods, Services and ConfigMaps. + [PersistentVolumes](/docs/user-guide/persistent-volumes/) + and [StatefulSets](/docs/concepts/controllers/statefulsets/), + as well as other core concepts like [Pods](/docs/user-guide/pods/), + [Services](/docs/user-guide/services/), and + [ConfigMaps](/docs/user-guide/configmap/). * Some familiarity with MySQL will help, but this tutorial aims to present general patterns that should be useful for other systems.