From 06d978995f6bb6b3242be05525f3095163820db6 Mon Sep 17 00:00:00 2001 From: Anthony Yeh Date: Fri, 2 Dec 2016 14:20:40 -0800 Subject: [PATCH] Link to k8s.io instead of GitHub for manifests. --- .../run-replicated-stateful-application.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/tutorials/stateful-application/run-replicated-stateful-application.md b/docs/tutorials/stateful-application/run-replicated-stateful-application.md index e294bb5913..db4a69b22f 100644 --- a/docs/tutorials/stateful-application/run-replicated-stateful-application.md +++ b/docs/tutorials/stateful-application/run-replicated-stateful-application.md @@ -59,8 +59,7 @@ and a StatefulSet. Create the ConfigMap from the following YAML configuration file: ```shell -export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/{{page.docsbranch}} -kubectl create -f $REPO/docs/tutorials/stateful-application/mysql-configmap.yaml +kubectl create -f http://k8s.io/docs/tutorials/stateful-application/mysql-configmap.yaml ``` {% include code.html language="yaml" file="mysql-configmap.yaml" ghlink="/docs/tutorials/stateful-application/mysql-configmap.yaml" %} @@ -80,8 +79,7 @@ based on information provided by the StatefulSet controller. Create the Services from the following YAML configuration file: ```shell -export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/{{page.docsbranch}} -kubectl create -f $REPO/docs/tutorials/stateful-application/mysql-services.yaml +kubectl create -f http://k8s.io/docs/tutorials/stateful-application/mysql-services.yaml ``` {% include code.html language="yaml" file="mysql-services.yaml" ghlink="/docs/tutorials/stateful-application/mysql-services.yaml" %} @@ -107,8 +105,7 @@ writes. Finally, create the StatefulSet from the following YAML configuration file: ```shell -export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/{{page.docsbranch}} -kubectl create -f $REPO/docs/tutorials/stateful-application/mysql-statefulset.yaml +kubectl create -f http://k8s.io/docs/tutorials/stateful-application/mysql-statefulset.yaml ``` {% include code.html language="yaml" file="mysql-statefulset.yaml" ghlink="/docs/tutorials/stateful-application/mysql-statefulset.yaml" %}