Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Update quickstart #476

Merged
merged 1 commit into from
Nov 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!__
Expand Down