From 65de831b9c7fa0de67a4fab70692bfa548d32d24 Mon Sep 17 00:00:00 2001 From: Devin Donnelly Date: Wed, 18 Jan 2017 14:16:33 -0800 Subject: [PATCH] Fixed bug in line to include sample deployment yaml. --- docs/concepts/abstractions/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/abstractions/overview.md b/docs/concepts/abstractions/overview.md index 2acadcafa5..74d223361d 100644 --- a/docs/concepts/abstractions/overview.md +++ b/docs/concepts/abstractions/overview.md @@ -33,7 +33,7 @@ When you create an object in Kubernetes, you must provide the object spec that d Here's an example `.yaml` file that shows an example of the required fields and object spec for a Kubernetes Deployment: -{% include code.html language="yaml" file="/docs/user-guide/nginx-deployment.yaml" ghlink="/docs/user-guide/nginx-deployment.yaml" %} +{% include code.html language="yaml" file="nginx-deployment.yaml" ghlink="/docs/concepts/abstractions/nginx-deployment.yaml" %} One way to create a Deployment using a `.yaml` file like the one above is to use the []`kubectl create`]() command in the `kubectl` command-line interface, passing the `.yaml` file as an argument. Here's an example: