#kubernetes
Read more stories on Hashnode
Articles with this tag
Annotations in Kubernetes are a way to attach arbitrary non-identifying metadata to objects. They are key-value pairs, and unlike labels, they are not...
In Kubernetes, logging at the container and pod levels is essential for monitoring and debugging applications. Kubernetes captures logs from each...
Pod anti-affinity is a Kubernetes feature that allows you to specify that certain pods should not be scheduled on the same nodes as other specified...
Ephemeral storage in Kubernetes refers to the storage associated with a pod that exists only for the lifetime of that pod. It is typically used for...
In Kubernetes, a "taint" is a way to mark a node with a specific attribute that repels pods from being scheduled on it, unless those pods have a...
In Kubernetes, taints and tolerations are two distinct concepts used together to control how pods are scheduled on nodes. They help ensure that pods...