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. […]

Ansible: The copy module

July 6, 2024 admin 0

The module ansible.builtin.copy enables users to copy files from the controller node to managed nodes. It also helps to add/modify a destination file with a specific […]