OpenShift 4

Networks Services Routes and Scaling

Scaling

Hello, and welcome to this lesson on scaling applications with OpenShift.

Scaling an application in OpenShift involves modifying the number of replicas managed by its replication controller. The replication controller is responsible for ensuring that the desired number of pod replicas is running at all times. This means that whenever you adjust the replica count, OpenShift automatically creates or removes pods as needed. Additionally, the OpenShift Service or Router distributes incoming traffic evenly across all available pods, ensuring continuous application performance and high availability.

Tip

You can modify the replica count either by updating the YAML configuration file directly or by using the OpenShift web console, which provides a one-click solution for scaling your application up or down.

The image illustrates a "Scale Deployment" process, showing a diagram of a replication controller with multiple pods and a deployment configuration interface for a web application.

Next, we will walk through the process of scaling an application in OpenShift to help you understand each step in detail.

Watch Video

Watch video content

Previous
Demo Services and Routes