Skip to content

kviator is a small tool to manage data across distributed key value stores (consul, etcd)

License

Notifications You must be signed in to change notification settings

AcalephStorage/kviator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kviator

kviator is a small tool to manage data across distributed key value stores (consul, etcd)

Build

$ go get github.com/AcalephStorage/kviator
$ cd $GOPATH/src/github.com/AcalephStorage/kviator
$ go build

Running

$ ./kviator --help

for consul:

$ ./kviator --kvstore=consul --client=localhost:8500 put hello world
$ ./kviator --kvstore=consul --client=localhost:8500 get hello
#=> world

TLS support

$ ./kviator --kvstore=etcd --client=127.0.0.1:4001 \
--ca-cert=/path/to/ssl/ca-cert.pem \
--client-cert=/path/to/ssl/client-cert.pem \
--client-key=/path/to/ssl/client-key.pem \
put hello world

$ ./kviator --kvstore=etcd --client=127.0.0.1:4001 \
--ca-cert=/path/to/ssl/ca-cert.pem \
--client-cert=/path/to/ssl/client-cert.pem \
--client-key=/path/to/ssl/client-key.pem \
get hello

$ world

TODO

  • Better README
  • Needs docs

About

kviator is a small tool to manage data across distributed key value stores (consul, etcd)

Resources

License

Stars

Watchers

Forks

Packages

No packages published