Created
October 4, 2018 06:20
-
-
Save gavinzhou/273723a1daf754e3fd64d9cacef8760a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ docker run --rm -d -p 2379:2379 \ | |
| --name test-etcd3 quay.io/coreos/etcd:v3.1.0 /usr/local/bin/etcd \ | |
| --advertise-client-urls http://0.0.0.0:2379 --listen-client-urls http://0.0.0.0:2379 | |
| $ curl localhost:2379/v2/keys/foo -XPUT -d value="some value" | |
| $ curl localhost:2379/v2/keys/bar/this -XPUT -d value=42 | |
| $ curl localhost:2379/v2/keys/bar/that -XPUT -d value=take | |
| $ http localhost:2379/v2/keys/?recursive=true | |
| HTTP/1.1 200 OK | |
| Content-Length: 327 | |
| Content-Type: application/json | |
| Date: Tue, 06 Jun 2017 12:28:28 GMT | |
| X-Etcd-Cluster-Id: 10e5e39849dab251 | |
| X-Etcd-Index: 6 | |
| X-Raft-Index: 7 | |
| X-Raft-Term: 2 | |
| { | |
| "action": "get", | |
| "node": { | |
| "dir": true, | |
| "nodes": [ | |
| { | |
| "createdIndex": 4, | |
| "key": "/foo", | |
| "modifiedIndex": 4, | |
| "value": "some value" | |
| }, | |
| { | |
| "createdIndex": 5, | |
| "dir": true, | |
| "key": "/bar", | |
| "modifiedIndex": 5, | |
| "nodes": [ | |
| { | |
| "createdIndex": 5, | |
| "key": "/bar/this", | |
| "modifiedIndex": 5, | |
| "value": "42" | |
| }, | |
| { | |
| "createdIndex": 6, | |
| "key": "/bar/that", | |
| "modifiedIndex": 6, | |
| "value": "take" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment