Blogs

Deploying a LoadBalanced …

Deploy NGINX on Kubernetes Metallb

Step 1: Deploying an NGINX deployment

Command:

kubectl create deployment nginx --image=quay.io/redhattraining/nginx:1.21 --port=80
NAME    READY   UP-TO-DATE   AVAILABLE   AGE
nginx   1/1     1            1           10s

Step 2:

Check status of existing services …

Metallb Setup on Minikube

Setting up Metallb on Minikube

Minikube can help spin up a cluster of VMs quickly to run kubernetes on. But the major pain point is getting the LoadBalancer to be setup since that is typically setup by default on cloud providers

Reference: The details published in the article have been derived from …