Skip to content

Commit

Permalink
Merge pull request kelseyhightower#336 from karthequian/master
Browse files Browse the repository at this point in the history
Added documentation for stackengine as a backend
  • Loading branch information
kelseyhightower committed Jan 23, 2016
2 parents a1dee21 + 2593628 commit d9ea46c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/command-line-flags.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ confd -h

```Text
Usage of confd:
-auth-token="": stackengine auth-token
-backend="etcd": backend to use
-client-ca-keys="": client ca keys
-client-cert="": the client cert
Expand Down
12 changes: 12 additions & 0 deletions docs/quick-start-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ confd supports the following backends:
* redis
* zookeeper
* dynamodb
* stackengine
* rancher

### Add keys
Expand Down Expand Up @@ -75,6 +76,10 @@ aws dynamodb put-item --table-name <YOUR_TABLE> --region <YOUR_REGION> \
aws dynamodb put-item --table-name <YOUR_TABLE> --region <YOUR_REGION> \
--item '{ "key": { "S": "/myapp/database/user" }, "value": {"S": "rob"}}'
```
#### StackEngine
```
curl -k -X PUT -d 'value' https://mesh-01:8443/api/kv/key --header "Authorization: Bearer stackengine_api_key"
```

#### rancher

Expand Down Expand Up @@ -142,6 +147,13 @@ confd -onetime -backend dynamodb -table <YOUR_TABLE>
confd -onetime -backend env
```

#### StackEngine

```
confd -onetime -backend stackengine -auth-token stackengine_api_key -node 192.168.255.210:8443 -scheme https
```

=======
#### rancher

```
Expand Down

0 comments on commit d9ea46c

Please sign in to comment.