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!__