Skip to main content

Latest Tutorials

Latest
Use Tags in Ansible Playbooks
Ansible Tutorials

How to Use Tags in Ansible Playbooks

Manage specific tasks in a large playbook using tags in Ansible. Here are some real-world usecases.

ยท LHB Community

Ansible Debug Module
Ansible Modules

Ansible Debug Module: Display Output During Playbook Execution

Troubleshoot your playbooks for errors with the debug module in Ansible.

ยท LHB Community

Kubernetes Log
Kubernetes

Checking Kubernetes Log With kubectl logs Command

The kubectl logs is a powerful tool for monitoring and troubleshooting Kubernetes applications

ยท LHB Community

Kubernetes Switch Namespaces
Kubernetes

How to Switch Namespaces in Kubernetes

Learn how to switch namespaces in Kubernetes to run kubectl commands in the desired namespace.

ยท LHB Community

GitHub create new folder
GitHub Fundamentals

Create a New Folder in a GitHub Repo

Learn to create a new folder in a GitHub repository from the web interface.

ยท Prakhar Tiwari

fork github repository
GitHub Fundamentals

How to Fork a GitHub Repository

The first step in contributing to an open source project is to fork it. Learn to fork a repo on GitHub in this quick tutorial.

ยท Prakhar Tiwari

git fetch vs pull
Using Git

What is the Difference Between Git fetch and Git pull?

Git fetch and pull seem to do the same task but there is subtle difference between their functioning.

ยท Pratham Patel

git amend commit
Using Git

Amend a Comment in Git

We all make mistakes. The important thing is to make amends. Git allows you that as well.

ยท Sagar Sharma

Check git commit history
Using Git

Check Git Commit History

Learn to quickly check the commit history in git.

ยท Sagar Sharma

Git show files in a commit
Using Git

Git Show Files in a Commit

Are you adding all the correct files? Check the files that are part of a commit in git with this trick.

ยท Sagar Sharma

Get All Resources in a Namespace in Kubernetes
Kubernetes

Get All Resources in a Namespace in Kubernetes

Learn how to get all resources in a namespace in Kubernetes. Also learn to filter it out for more precise result.

ยท LHB Community

Kubernetes pods vs containers
Kubernetes

Difference Between Pods and Containers in Kubernetes

It is easy to get confused between pods and containers when you are new to Kubernetes.

ยท LHB Community

Bash check prime number
Bash Practice Exercises

Check Prime Number

Here are a couple of bash scripts example to check whether a given number is prime or not.

ยท Abhishek Prakash

Editing Kubernetes Deployment
Kubernetes

How to Edit a Kubernetes Deployment

Looking to edit a Kubernetes deployment? Use kubectl edit for quick changes, kubectl patch for controlled modifications, or kubectl set for specific updates.

ยท LHB Community

How to Keep a Container Running on Kubernetes
Kubernetes

How to Keep a Container Running on Kubernetes

In a situation where you have to keep a container running? Here are three methods to achieve that in Kubernetes.

ยท Umair Khurshid

Always use latest image with docker compose
Docker Tutorials

How to Make Docker-Compose to Always Use the Latest Image

Learn various methods for getting the latest images in Docker Compose.

ยท Umair Khurshid

Kubernetes
Kubernetes

List All Pods and Nodes in Kubernetes

In this quick Kubernetes tutorial, learn about getting pods and nodes information.

ยท LHB Community

restart container with docker compose
Docker Tutorials

Restart a Single Container with Docker Compose

Restarting single container within a multi-container Docker Compose application helps during development or troubleshooting.

ยท Umair Khurshid

Ansible replace module
Ansible Modules

Ansible Replace Module: Replace Strings and Lines

Learn to replace strings and lines across multiple systems or files with the Ansible replace module.

ยท LHB Community

Ansible blocks
Ansible Tutorials

How to Use Ansible Blocks

Make your Playbooks more readable and maintainable using Blocks feature in Ansible.

ยท LHB Community

sar command usage in Linux
Tools

Using sar Command to Get System Resource Stats

Sar is CLI utility that tracks and records system resource utilization. Extremely helpful if you want to have a historical view of the resource usage.

ยท Helder