Devops
Kubernetes ConfigMaps usage to declare env variables
Kubernetes ConfigMap decouples the application data from the application. It is used to set and define environment variables inside the Pod container. You can …
Simple examples to learn Kubernetes DaemonSets
A Kubernetes DaemonSet ensures a copy of a Pod is running across a set of nodes in a Kubernetes cluster.
Beginners guide on Kubernetes StatefulSets with examples
A Kubernetes StatefulSet makes sure pods are rescheduled in such a way that they retain their identity and state. It also allows you to easily scale the number …
Configure Pod storage with Kubernetes Persistent Volume (PV)
A Kubernetes Persistent Volume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage …
Beginners guide on Kubernetes volumes with examples
Kubernetes volume lives with a Pod across a container life cycle. After a container is restarted, the new container can see all the files that were written to …
