Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a Getting Started section to the README.md file #1

Merged
merged 2 commits into from
Aug 23, 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
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@ Argo is an open source container-native workflow engine for developing and runni
* Argo is cloud agnostic. Today we support AWS and GKE (alpha) with additional platforms coming soon.
* With Argo, you don’t need to install or learn other tools such as Jenkins, Chef, Cloud Formation... 

## Getting started

### Step 1: Download the argo binary

**Mac:** `curl -sSL -O https://s3-us-west-1.amazonaws.com/ax-public/argocli/latest/darwin_amd64/argo`

**Linux:** `curl -sSL -O https://s3-us-west-1.amazonaws.com/ax-public/argocli/latest/linux_amd64/argo`

```
chmod a+x ./argo
cp ./argo /usr/local/bin
```

### Step 2: Install argo

`argo cluster`

## Main Features
* Container-native workflows for Kubernetes.
* Each step in the workflow is a container
Expand Down