Cyberithub

How to Check Elasticsearch Cluster Health Status in Linux Using 3 Easy Steps

How to Check Elasticsearch Cluster Health Status in Linux Using 3 Easy Steps 3

In this tutorial, we will understand the steps and queries required to check the Elasticsearch cluster health status. Sometimes you might have noticed that frontend app which was fetching data from Elasticsearch cluster suddenly not showing any data and it goes completely blank. Although the issue could be anywhere but just for the understanding we ... Read more

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

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

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

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

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

Polymorphism Concept in Python with Best Working Examples

Polymorphism Concept in Python with Best Working Examples 8

In this tutorial, we will go through polymorphism concepts in python with examples. Polymorphism is made up of two words: poly means many and morphism means several different forms. Like many other Object Oriented Programming Languages python also has the polymorphism concept. In this concept same object can perform in variety of ways based on ... Read more

Inheritance Concepts and Its 5 Different Types in Python with Best Working Examples

Inheritance Concepts and Its 5 Different Types in Python with Best Working Examples 9

In this tutorial I will take you through Inheritance concepts in Python with Best Working Examples. If we talk about a real life example, Inheritance is when a child inherits some of the properties from their parents. It can be the eye color, skin color or any other gene characteristics. In a similar way if ... Read more

How to Create New Custom Namespaces in Kubernetes{3 Best Methods}

How to Create New Custom Namespaces in Kubernetes{3 Best Methods} 10

In this tutorial, I will guide you through the steps to create new custom namespaces in Kubernetes. Namespaces are one of the key features in Kubernetes frequently used to divide the physical cluster into multiple virtual clusters. Each virtual cluster acts as a namespace under which multiple resources can be created. What is Namespace in ... Read more