Looking for the entire 7 part guide? Start at the Overview

In Kubernetes, a ReplicationController (also known as a “ReplicaSet” in newer versions of Kubernetes) is a controller that ensures that a specified number of replicas of a Pod are running at any given time.

The ReplicationController is responsible for monitoring the state of the Pods it manages and taking corrective action if the desired state does not match the actual state. For example, if a Pod fails or is terminated, the ReplicationController will create a new Pod to replace it.

Here are some key features of ReplicationControllers in Kubernetes:

  • ReplicationControllers ensure that a specified number of replicas of a Pod are running: You can specify the number of replicas you want to run in the desired state, and the ReplicationController will ensure that this number is maintained.

  • ReplicationControllers can be used for scaling and rolling updates: By increasing or decreasing the number of replicas, you can scale your application up or down. Additionally, you can use ReplicationControllers to perform rolling updates of your application, by gradually replacing old Pods with new ones.

  • ReplicationControllers are self-healing: If a Pod fails or is terminated, the ReplicationController will create a new Pod to replace it. This ensures that the desired number of replicas is always maintained, even in the face of failures or errors.

  • ReplicationControllers can be used with labels and selectors: You can use labels and selectors to specify which Pods are managed by a ReplicationController. This allows you to manage groups of related Pods as a single unit.

  • ReplicationControllers are being replaced by ReplicaSets: As of Kubernetes version 1.9, ReplicationControllers are being phased out and replaced by ReplicaSets. ReplicaSets provide the same functionality as ReplicationControllers, but with more advanced features for managing Pods.

Overall, ReplicationControllers (and their newer equivalent, ReplicaSets) are a key component of Kubernetes for managing the deployment and scaling of containerized applications. By ensuring that the desired number of replicas are running, and automatically replacing failed or terminated Pods, ReplicationControllers provide a reliable and self-healing foundation for running containerized workloads in Kubernetes.

Replication Controllers have been replaced by ReplicaSets in Kubernetes, but here are some examples of managing them using the command line interface (CLI):

Create a replication controller:

1
$ kubectl create -f rc-definition.yaml

This command will create a replication controller based on the configuration specified in the rc-definition.yaml file.

Get information about the replication controllers:

1
$ kubectl get replicationcontroller

This command will display information about all the replication controllers in the Kubernetes cluster, including their name, desired and current number of replicas, and the image used.

Scale the replication controller:

1
$ kubectl scale replicationcontroller my-rc --replicas=3

This command will scale the my-rc replication controller to three replicas.

Update the replication controller:

1
$ kubectl rolling-update my-rc --image=image:v2

This command will update the my-rc replication controller to use the image:v2 image, using a rolling update strategy to minimize downtime.

Delete a replication controller:

1
$ kubectl delete replicationcontroller my-rc

This command will delete the my-rc replication controller from the Kubernetes cluster.

These are just a few examples of the many commands available for managing replication controllers in Kubernetes.