Skip to content

Commit

Permalink
Merge pull request #18 from indigo-dc/release
Browse files Browse the repository at this point in the history
version bump 1.0.0, update documentation, fix #17
  • Loading branch information
bwegh authored Mar 20, 2017
2 parents 167846d + 293957b commit 7727e19
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ For more information and more examples please see the [documentation](https://in
If your system is not supported you can still use orchent through a lightweight Docker container.
Download the container in the release section and import it using the `docker load` command:
```
docker load --input orchent_container_0.4.0.tar
docker load --input orchent_container_1.0.0.tar
```

After loading the container you can use it to run orchent:
```
docker run orchent:0.4.0 --version
docker run orchent:0.4.0 --help
docker run orchent:1.0.0 --version
docker run orchent:1.0.0 --help
```

For information on how to pass environment settings to the docker see
Expand Down
19 changes: 19 additions & 0 deletions gitbook/admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,25 @@ Installing on CentOs is also just a
```
yum install golang
```

#### Importing the Docker Container
If your system is not supported you can still use orchent through a lightweight Docker container.
Download the container in the release section and import it using the `docker load` command:
```
docker load --input orchent_container_1.0.0.tar
```

After loading the container you can use it to run orchent:
```
docker run orchent:1.0.0 --version
docker run orchent:1.0.0 --help
```

For information on how to pass environment settings to the docker see
```
docker run --help
```

#### The official go way
Orchent is following the
[go code organization rules](https://golang.org/doc/code.html#Organization)
Expand Down
2 changes: 1 addition & 1 deletion orchent.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"strings"
)

const OrchentVersion string = "0.4.0"
const OrchentVersion string = "1.0.0"

var (
app = kingpin.New("orchent", "The orchestrator client. Please store your access token in the 'ORCHENT_TOKEN' environment variable: 'export ORCHENT_TOKEN=<your access token>'. If you need to specify the file containing the trusted root CAs use the 'ORCHENT_CAFILE' environment variable: 'export ORCHENT_CAFILE=<path to file containing trusted CAs>'.").Version(OrchentVersion)
Expand Down

0 comments on commit 7727e19

Please sign in to comment.