Kubernates with custom database

4/28/2018

In Kubernates, heapster and influxdb is present with thier specific schema. I want to store pod all information in a custom database (sqlite) with my specified schema. Is it possible? If it is possible, what is the source of information for pod? How can I take it and store?

-- samar
kubernetes

1 Answer

4/29/2018

Kubernetes uses etcd to store metadata about the cluster. etcd is a schemaless key-value store. Storage of cluster objects uses an object serialization scheme.

The code to read starts here: https://github.com/kubernetes/kubernetes/tree/2bb1e7581544b9bd059eafe6ac29775332e5a1d6/staging/src/k8s.io/apiserver/pkg/storage

-- Jonah Benton
Source: StackOverflow