Cyberithub

5 Practical Steps to Create and Use ReplicaSet in Kubernetes with Examples

In this article I will take you through 5 practical steps to create and use ReplicaSet in kubernetes with examples. ReplicaSet is an important concept brought up in Kubernetes to make sure that the required resources(pods) are always available. It is known to be the successor of Replication Controller. Without ReplicaSet if you have to … Read more

Horizontal Scale Up/Down the Pods Based on CPU Utilization in Kubernetes

In this tutorial, we will look into 3 methods to horizontal scale up/down the pods based on CPU utilization in Kubernetes. Scaling is a feature which is used extensively in Kubernetes technology where resources can be increased or decreased depending upon the current Server workload. There are basically two types of scaling – Horizontal and … Read more

How to Check Stateful and Stateless Pods in Kubernetes Cluster{Easy Methods}

In this article, I will show you how to check Stateful and Stateless Pods in Kubernetes Cluster. Pods are the smallest unit of application runs in Kubernetes Cluster. It can represent a Single Application Container or cluster of application containers and volumes running in the same execution environment. A pod can be stateful or stateless … Read more

15 ansible-vault command examples to encrypt and decrypt sensitive data/files on Linux

In this article, i will take you through 15 ansible-vault command examples to encrypt and decrypt sensitive data/files on Linux. Vault is a special feature in Ansible implemented using ansible-vault tool to encrypt all the sensitive information like password, variable, data and any other information you want to protect. This tool is frequently used to … Read more

22 Best Kubectl Command Examples

In this article, I will take you through 22 Best Kubectl Commands Examples. As you probably know, kubectl command is relatively used to manage Kubernetes. It is essentially a primary gateway to access any kubernetes cluster. Since it is a primary command line access tool hence It is very important for you to know this … Read more

10 Best Chef Commands for DevOps Engineer

In this tutorial, I will take you through top 10 chef commands which will be generally used by DevOps Engineer. Chef is consist of a Chef server, one or more workstations, and a node where the chef-client is installed. Components name is based on the roles played by each machine in the Chef ecosystem. Chef … Read more

Top 17 Popular GIT Commands Examples on Linux

In this tutorial, I will take you through top 17 GIT Commands Examples on Linux. Git is a popular and widely used source management system that greatly simplifies the development cycle. It enables users to create, use, and switch between branches for content development as easily as people create and switch between files in their … Read more