Install Rocky Linux 8 on VirtualBox

Install Rocky Linux 8 on VirtualBox

Rocky Linux is one of the alternative which came in place of CentOS, as CentOS reached EOS/EOL. Among other alternatives, CentOS was widely accepted by  the community. In this Article we will see how to ... Read more

Why Did Google Create Golang ?

Why Did Google Create Golang ?

Go is a programming language created by Robert Griesemar, Rob Pike and Ken Thompson with in Google. Go came into picture by 2009. If we need to understand why Go was created, we need to ... Read more

Categories Go

Kubernetes Load Balancer Service

KUBERNETES LOAD BALANCER SERVICE

Kubernetes load balancer service is one of the ways which is used to expose a Kubernetes object outside the cluster. When a load balancer service is deployed, an external ip will be allocated by the ... Read more

Kubernetes Architecture Explained

Default

Kubernetes is  a container orchestrator on a high-level view the Kubernetes can be divided into three parts. Control Node or Master Worker Node Pods Master Node: The Master Node or control node is the one ... Read more

kubernetes imperative commands cheat sheet

kubernetes imperative commands cheat sheet

The Kubernetes imperative method is one of the approaches used for deploying Kubernetes resources. The imperative mode is the quick way for creating and deleting Kubernetes resources using kubectl commands Below are the various commands ... Read more

Kubernetes Imperative Vs Declarative handling

Kubernetes Imperative Vs Declarative handling

Kubernetes objects like pods, replicaset, statefulset, services, etc.. can be created in Imperative and Declarative mode. Imperative mode In the imperative mode of creating Kubernetes objects, the objects are created with Kubernetes's kubectl commands. One ... Read more