From a49449045883f0ca8d47169130472d03c288b34b Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Mon, 16 Dec 2019 06:17:37 -0800 Subject: [PATCH] Fix Pods concepts link in StatefulSet tutorial (#18063) Without this change, the instruction to "get familiar with" the Pods concept directs the user to the pods section of the User Guide, which actually redirects to the "Run a Stateless Application Using a Deployment" task, which is not strictly about Pods. This change fixes the link to point to the Pods Overview in the Concepts section, which makes more sense in this context. --- .../docs/tutorials/stateful-application/basic-stateful-set.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/stateful-application/basic-stateful-set.md b/content/en/docs/tutorials/stateful-application/basic-stateful-set.md index 9bf6e5d0a0..e8f3156694 100644 --- a/content/en/docs/tutorials/stateful-application/basic-stateful-set.md +++ b/content/en/docs/tutorials/stateful-application/basic-stateful-set.md @@ -21,7 +21,7 @@ demonstrates how to create, delete, scale, and update the Pods of StatefulSets. Before you begin this tutorial, you should familiarize yourself with the following Kubernetes concepts. -* [Pods](/docs/user-guide/pods/single-container/) +* [Pods](/docs/concepts/workloads/pods/) * [Cluster DNS](/docs/concepts/services-networking/dns-pod-service/) * [Headless Services](/docs/concepts/services-networking/service/#headless-services) * [PersistentVolumes](/docs/concepts/storage/persistent-volumes/)