From 613dcc65851d30bac6f819e0093ca9ccba14ed7f Mon Sep 17 00:00:00 2001 From: Sivasamy Kaliappan Date: Mon, 28 Aug 2017 14:32:40 +0530 Subject: [PATCH] Fixed incorrect links for YAML files The current links for YAML files throws 404. Updated the links from tutorials to tasks --- .../run-application/run-replicated-stateful-application.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tasks/run-application/run-replicated-stateful-application.md b/docs/tasks/run-application/run-replicated-stateful-application.md index 2be54886d5..9613bb2437 100644 --- a/docs/tasks/run-application/run-replicated-stateful-application.md +++ b/docs/tasks/run-application/run-replicated-stateful-application.md @@ -62,7 +62,7 @@ Create the ConfigMap from the following YAML configuration file: kubectl create -f https://k8s.io/docs/tasks/run-application/mysql-configmap.yaml ``` -{% include code.html language="yaml" file="mysql-configmap.yaml" ghlink="/docs/tutorials/run-application/mysql-configmap.yaml" %} +{% include code.html language="yaml" file="mysql-configmap.yaml" ghlink="/docs/tasks/run-application/mysql-configmap.yaml" %} This ConfigMap provides `my.cnf` overrides that let you independently control configuration on the MySQL master and slaves. @@ -82,7 +82,7 @@ Create the Services from the following YAML configuration file: kubectl create -f https://k8s.io/docs/tasks/run-application/mysql-services.yaml ``` -{% include code.html language="yaml" file="mysql-services.yaml" ghlink="/docs/tutorials/run-application/mysql-services.yaml" %} +{% include code.html language="yaml" file="mysql-services.yaml" ghlink="/docs/tasks/run-application/mysql-services.yaml" %} The Headless Service provides a home for the DNS entries that the StatefulSet controller creates for each Pod that's part of the set. @@ -108,7 +108,7 @@ Finally, create the StatefulSet from the following YAML configuration file: kubectl create -f https://k8s.io/docs/tasks/run-application/mysql-statefulset.yaml ``` -{% include code.html language="yaml" file="mysql-statefulset.yaml" ghlink="/docs/tutorials/run-application/mysql-statefulset.yaml" %} +{% include code.html language="yaml" file="mysql-statefulset.yaml" ghlink="/docs/tasks/run-application/mysql-statefulset.yaml" %} You can watch the startup progress by running: