From 98d52f37e194497a186ad87fd47ebfe8d32f81ba Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 21 Nov 2017 11:10:08 -0500 Subject: [PATCH] Update quickstart Update the quickstart with the correct examples as well as the correct link to the said example. --- docs/quickstart.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 140e311ae..46bf54501 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -6,18 +6,19 @@ Kedge is a deployment tool for Kubernetes artifacts by using a simplified versio In two steps, we will go from a super-simple YAML file to a full-fledged Kubernetes deployment: -__1. Using an example [httpd.yaml](https://raw.githubusercontent.com/kedgeproject/kedge/master/examples/simplest/httpd.yaml) file.__ +__1. Using an example [httpd.yaml](https://raw.githubusercontent.com/kedgeproject/kedge/master/examples/httpd/httpd.yaml) file__ ```yaml name: httpd + containers: - image: centos/httpd + services: - name: httpd - type: NodePort - ports: - - port: 8080 - targetPort: 80 + type: LoadBalancer + portMappings: + - 8080:80 ``` __2. Now run the create command to deploy to Kubernetes!__