Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Flytectl get started added for running example #58

Merged
merged 1 commit into from
May 27, 2021
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,20 @@ Generating docs locally can be accomplished by running make gendocs from within
$ brew tap flyteorg/homebrew-tap
$ brew install flytectl
```
## Get Started

### Create a sandbox cluster
```bash
$ docker run --rm --privileged -p 30081:30081 -p 30082:30082 -p 30084:30084 ghcr.io/flyteorg/flyte-sandbox
```

### Register your first workflow

```bash
# Run Core workflows
$ flytectl register files https://github.com/flyteorg/flytesnacks/releases/download/v0.2.89/flytesnacks-core.tgz -d development -p flytesnacks --archive
# You can find all example at flytesnacks release page https://github.com/flyteorg/flytesnacks/releases/tag/v0.2.89
```
## Contributing

[Contribution guidelines for this project](docs/CONTRIBUTING.md)