#devops
Read more stories on Hashnode
Articles with this tag
What are DaemonSets? DeamonSets are like Replica Sets, as they help you deploy multiple instances of pod, but it runs one copy of your pod on each...
In the last article we have learnt about Node affinity. Taints and Toleration functions similarly but take an opposite approach. When we use Node...
In Kubernetes, scheduling refers to making sure that Pods are matched to Nodes so that Kubelet can run them. It's the kube-scheduler job to schedule...
What is a Kubernetes Service? Kubernetes Service is a REST object in the API that we define in a manifest file and post to the API server. It is a...
There are two type of replication strategies in Kubernetes ReplicaSets and ReplicationController. In this article I am going to explain about the...
What are Deployments in Kubernetes? As per official documentation A Deployment provides declarative updates for Pods and ReplicaSets. In other words...