Azure Kubernetes Services (AKS) Replica set and deployment

Posted on January 19, 2023
kubernetesazureclouddeployment

In Kubernetes, replicas refer to the number of copies of a specific pod running in a cluster. In Azure Kubernetes Service (AKS), you can specify the number of replicas for deployment in the deployment configuration file. This is done using the "replicas" field, which defines the desired number of replicas for the deployment. The Kubernetes controller manager will then ensure that the specified number of replicas is running at all times. If any pods fail, new ones will be created to replace them. This feature is used to provide high availability and scalability for your applications.

Here's an example of a deployment configuration file that sets the number of replicas to 3:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-deployment
spec:
  replicas: 3
  selector:
    matchLabels:
      app: my-app
  template:
    metadata:
      labels:
        app: my-app
    spec:
      containers:
      - name: my-container
        image: my-image:latest

In this example, the deployment named "my-deployment" will have 3 replicas running at all times. The selector field is used to identify the pods that belong to this deployment and the template field defines the container specifications for the pods.

You can also update the number of replicas in a running deployment using the command line, like this:

kubectl scale deployment my-deployment --replicas=5

This command will change the number of replicas in the "my-deployment" to 5.

How does replication help in microservice?

Replication in a microservice architecture helps to provide high availability and fault tolerance for your services. By running multiple replicas of a service, you can ensure that there is always at least one instance available to handle incoming requests, even if one or more instances fail.

With replication, if an instance of a service fails, another replica can take over and continue processing requests, minimizing downtime and disruption to the overall system. This is particularly important for services that handle critical business logic or handle large amounts of traffic.

Additionally, replication can also help with horizontal scalability. By increasing the number of replicas, you can handle more traffic and process more requests, which can help to improve performance and reduce response times.

In Kubernetes, replicas of nodes can be controlled by the Replication controller, ReplicaSet, Deployments, StatefulSet, DaemonSet, etc.

Therefore, replication is a key strategy for ensuring that microservices are highly available and can handle large amounts of traffic, thus making the overall system more reliable and resilient.

Configuring the YAML for a ReplicaSet

apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: my-replicaset
  labels:
    app: my-app
spec:
  replicas: 3
  selector:
    matchLabels:
      app: my-app
  template:
    metadata:
      labels:
        app: my-app
    spec:
      containers:
      - name: my-container
        image: my-image:latest
        ports:
        - containerPort: 80

In this example, the ReplicaSet is named "my-replicaset" and is labeled with the app: my-app label. The "replicas" field specifies the desired number of replicas, in this case, 3. The "selector" field is used to identify the pods that belong to this ReplicaSet and the "template" field defines the container specifications for the pods.

The "template" field specifies the container name, image, and port information for the pods. In this example, the container name is "my-container", the image used is "my-image:latest" and it's listening on port 80.

Here are some common kubectl commands you can use to manage ReplicaSets:

**kubectl create **-f replicaset.yaml: This command creates a ReplicaSet based on the configuration specified in the replicaset.yaml file.

kubectl get replicasets: This command lists all ReplicaSets in the current namespace.

kubectl describe replicaset my-replicaset: This command provides detailed information about the ReplicaSet named "my-replicaset", including the current number of replicas, pod template, and status.

kubectl delete replicaset my-replicaset: This command deletes the ReplicaSet named "my-replicaset".

kubectl scale replicaset my-replicaset --replicas=5: This command scales the number of replicas in the ReplicaSet named "my-replicaset" to 5.

kubectl edit replicaset my-replicaset: This command opens the ReplicaSet configuration file for editing in your default editor.

You can auto scale - Horizontal Pod Autoscaler (HPA)

In Kubernetes, you can use the Horizontal Pod Autoscaler (HPA) to automatically scale the number of replicas in a deployment or replica set based on resource usage.

To configure automatic scaling, you first need to create a Horizontal Pod Autoscaler (HPA) resource that specifies the minimum and maximum number of replicas, and the metric to use for scaling. Here is an example of how to create an HPA that scales the number of replicas based on CPU usage:

apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
  name: my-hpa
  labels:
    app: my-app
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: my-deployment
  minReplicas: 1
  maxReplicas: 10
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 80

In this example, the HPA named "my-hpa" is associated with a deployment named "my-deployment" and will scale the number of replicas between 1 and 10 based on CPU utilization. The averageUtilization value of 80 means that when the average CPU usage of all pods is above 80% the HPA will scale up, and when the average CPU usage of all pods is below 80% the HPA will scale down.

You can also use custom metric by configuring the Prometheus Adapter and configuring the HPA to use the custom metric.

You can also check the status of HPA by running kubectl get hpa and check the current replicas and desired replicas.

Summary

In summary, Kubernetes provides several ways to automatically scale the number of replicas in a deployment or ReplicaSet. The Horizontal Pod Autoscaler (HPA) is a built-in Kubernetes feature that allows you to automatically scale the number of replicas based on resource usage. You can configure an HPA to scale the number of replicas between a minimum and maximum value, and specify the metric to use for scaling, such as CPU or memory usage. You can also use Cluster Autoscaler to automatically scale the number of nodes in a cluster based on resource usage. This can be useful if your pods are unable to scale horizontally and require more resources.

Thanks for reading!


Posted on January 19, 2023
Profile Picture

Arun Yadav

Software Architect | Full Stack Web Developer | Cloud/Containers

Subscribe
to our Newsletter

Signup for our weekly newsletter to get the latest news, articles and update in your inbox.

More Related Articles