#kubernetes
Read more stories on Hashnode
Articles with this tag
What is Kubernetes and why it is important? Kubernetes is an open-source orchestration tool developed by Google for managing micro-services or...
What are persistent volumes in K8s? In Kubernetes, a Persistent Volume (PV) is a piece of storage in the cluster that has been provisioned by an...
What are ConfigMaps in k8s? A ConfigMap is an API object used to store non-confidential data in key-value pairs. Pods can consume ConfigMaps as...
What are services in K8s? In Kubernetes, a Service is a method for exposing a network application that is running as one or more Pods in your...
What is Namespace? In Kubernetes, namespaces provide a mechanism for isolating groups of resources within a single cluster. Names of resources need to...
What is Deployment in k8s? A Deployment provides a configuration for updates for Pods and ReplicaSets. You describe a desired state in a...