Understanding Resource Limits in Kubernetes

In this article, we will see an example of a resource limit and request for CPU and Memory. We will also use Metric Server. The Metrics Server is an aggregator of resource usage data in the cluster and it is not deployed by default in the cluster. We will use this Metric Server to see the resource consumption by pods.

Mastering Kubernetes: A Guide to Labels and Selectors

Labels can be used to organize and to select Kubernetes objects. In this article, we will create a Pod with Labels to it and redirect the requests to it from the service using Selector. We will also perform get, delete operations on Pod and Service using Label/Selectors on the command line.

Creating a Network Load Balancer on AWS: A Step-by-Step Guide

A Network Load Balancer works at the fourth layer of the Open Systems Interconnection (OSI) model, the Transport Layer. It opens a TCP connection to the selected target on the port specified in the listener configuration. In this article, we will see the steps to create a Network Load Balancer, register instances, and access the Load Balancer using its DNS.