Is Kubernetes Secrets…. A Secret?

To know how one can get access to Kubernetes secrets In the previous blog, we saw how etcd works with Kubernetes and how to access etcd. Now we will be learning how etcd stores secrets and can one can access those secrets or not? As we know containerized applications running in Kubernetes almost always need some […]

ETCD in Kubernetes

To learn how ETCD works in Kubernetes In the previous blog, we have seen about etcd, its installation with its implementation, and how to set up a three-node etcd local cluster. Now, we will be exploring the working of etcd in Kubernetes and how it stores the information about the cluster, and how we can interact with etcd to […]

Getting Started With ETCD

To learn about ETCD – A Distributed Key-Value Store etcd is a strongly consistent, distributed key-value store that provides a reliable way to store data that needs to be accessed by a distributed system or cluster of machines. It is an open-source project maintained by CNCF. Most notably, it manages the configuration data, state data, and metadata for Kubernetes, the popular container orchestration platform. […]