Learn Code Online

Learn Code Online

Follow
homeWriting GuideCourses#learncodeonline#iwritecodeDevopsnewslettermembers
Tag

Linux

#linux

More content

Read more stories on Hashnode


Articles with this tag

Kubernetes Scheduling - DaemonSet

Rakesh JainRakesh Jain
Nov 30, 20217 min read

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...

Kubernetes Scheduling - DaemonSet

Kubernetes Scheduling - Taints and Tolerations

Rakesh JainRakesh Jain
Oct 14, 20217 min read

In the last article we have learnt about Node affinity. Taints and Toleration functions similarly but take an opposite approach. When we use Node...

Kubernetes Scheduling - Taints and Tolerations

Kubernetes Scheduling - Node Selectors and Node Affinity

Rakesh JainRakesh Jain
Sep 6, 20217 min read

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...

Kubernetes Scheduling - Node Selectors and Node Affinity

Kubernetes Core Concepts - Services

Rakesh JainRakesh Jain
Aug 25, 20219 min read

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...

Kubernetes Core Concepts - Services

Kubernetes Core Concepts - ReplicaSets and Replication Controllers

Rakesh JainRakesh Jain
Jul 15, 20217 min read

There are two type of replication strategies in Kubernetes ReplicaSets and ReplicationController. In this article I am going to explain about the...

Kubernetes Core Concepts - ReplicaSets and Replication Controllers

Kubernetes Core Concepts - Deployments

Rakesh JainRakesh Jain
Jul 6, 20215 min read

What are Deployments in Kubernetes? As per official documentation A Deployment provides declarative updates for Pods and ReplicaSets. In other words...

Kubernetes Core Concepts - Deployments