whether the update of Pod description information can ensure global consistency?

4/20/2020

In k8s, users can modify pod description information or meta through http api. In the case of high concurrency, whether the update of Pod description information can ensure global consistency?

-- Long.zhao
kubernetes

1 Answer

4/20/2020

All the information including the pod metadata is stored in etcd. etcd is a strongly consistent, distributed key-value store that provides a reliable way to store data. So that means you are supposed to have strong consistency.

-- Arghya Sadhu
Source: StackOverflow