Kubernetes: ClusterIP

August 31, 2024 admin 0

The ClusterIP is one of the three services in Kubernetes. When creating a manifest file in yaml format if the kind is service, and no type is mentioned, […]

PostgreSQL: Basic commands

August 25, 2024 admin 0

We will use a CentOS server to install PostgreSQL. The below command installs the PostgreSQL server. [root@SHIJU-TEST-PGSQL-01 ~]# dnf install postgresql15-server -y [root@SHIJU-TEST-PGSQL-01 ~]# postgresql-setup […]

Kubernetes: Apps and pods

August 15, 2024 admin 0

A Pod is the smallest deployable units of computing in a Kubernetes environment. A pod can host just one application (container) or several. Let us […]

Kubernetes: NameSpace

August 14, 2024 admin 0

The namespaces in Kubernetes provides a way for separating groups of resources hosted within a single cluster. While the default namespace where all the pods […]

Kubernetes: Basic commands

August 14, 2024 admin 0

Once the installation of Kubernetes cluster is competed, let us go with the basic commands. The below command lists the pods running on the cluster. […]