1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
name: etcd
summary: A distributed key value store for configuration and service discovery.
description: |
A highly-available key value store for shared configuration and service
discovery. etcd is inspired by Apache ZooKeeper and doozer, with a
focus on being:
Simple: curl'able user facing API (HTTP+JSON)
Secure: optional SSL client cert authentication
Fast: benchmarked 1000s of writes/s per instance
Reliable: properly distributed using Raft
etcd is written in Go and uses the Raft consensus algorithm to
manage a highly-available replicated log.
tags:
- coordination
- "service discovery"
- ops
maintainers:
- "Whit Morriss <whit.morriss@canonical.com>"
- "Charles Butler <charles.butler@canonical.com>"
- "Matt Bruzek <matthew.bruzek@canonical.com>"
provides:
client:
interface: etcd
proxy:
interface: etcd-proxy
peers:
cluster:
interface: etcd-raft
|