Linux



Kubernetes

Kubernetes: Apps and pods

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 see if there are any pods running in the default…


Kubernetes

Kubernetes: NameSpace

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 and applications get hosted is in the “default” namespace, the…


Kubernetes

Kubernetes: Basic commands

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. Remember that there are several services used by Kubernetes already…


linux

Cron – Configure Recurring jobs

The cron application enabled users to run recurring jobs utomatically. It can include taking a backup at 03:00 AM every day, capturing users who have logged in at 5:00 PM, etc. The daemon thatĀ  runs…


Redhat Ansible

Ansible: The copy module

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 content. In the below example we use three groups in…



redhat

Time Date and Timesync using Chronyd

Every system has a clock and is a critical component of the Operating System. It keep the time, which is used for various proposes such as: Running automated jobs as configured intervals Marking timestamp on…