Where does kuberenetes stores provider parameters

9/28/2017

I searched a lot on google but not finding the answer. I am trying to figure out where kubernetes stores the information like node (VM), IP, Vlans (if any), file shares etc.These parameters are obtained from cloud provider and must be stored somewhere

-- Trishal
kubernetes

1 Answer

9/28/2017

Kubernetes uses etcd as its backing store. You can install and use etcdctl if you want to access it manually but you usually do not have to, except if you want to backup your whole cluster state.

-- Simon Tesar
Source: StackOverflow