1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 23:42:07 +02:00
tldr/pages/common/consul-kv.md
2017-02-28 16:01:38 +05:30

15 lines
276 B
Markdown

# consul-kv
> Distributed key-value store with health checking and service discovery.
- Read a value from the key-value store:
`consul kv get {{key}}`
- Store a new key-value pair:
`consul kv put {{key}} {{value}}`
- Delete a key-value pair:
`consul kv delete {{key}}`