key value store

941 views

Kubernetes uses ETCD as a key value store

Why in the first place Kubernetes cluster needs key-value store ? What’s the use case ?

In: Technology

2 Answers

Anonymous 0 Comments

A key/value store is something that stores data as pairs: a name (“key”), and a value. For instance such a store can be used to store configuration. Example:

Key Value
—————————-
Username Alice
Password hello64234
FontSize Small

And so on. They’re generally much simpler than databases, so they get used a lot for all kinds of simple use cases that don’t require something more complex, like a full blown relational database.

So, for instance a list of which machine has which IP address could be stored like that.

You are viewing 1 out of 2 answers, click here to view all answers.