Author: Jubair Ahmad

pie graph illustration

How To Increase the disk size of StatefulSet PVC

Reading Time: 2 minutes Hi folks in this blog we will see How To Increase the disk size of Stateful PVC. When we edit the manifest file of Statefulset to increase the disk size of PVC and try to apply the changes it throughs an error. That means we can not edit the disk size of Statefulset by editing the manifest file to increase the disk size. So in Continue Reading

How To Allow IAM User To Access EKS Resources

Reading Time: 3 minutes Hi Reader In this blog we are going to learn about How to Allow AWS IAM User To Access EKS Resources From AWS Console. When we create EKS Cluster by default EKS does not allow IAM users to access Its resources by AWS console. So we are going to find out the solution for how an IAM user can access EKS resources. When you try Continue Reading

Programmers working on computer program

How To Whitelist IPs Using Traefik Ingress Controller

Reading Time: 3 minutes Hi Readers, In this blog, we are going to see how to Whitelist IPs Using Traefik Ingress Controller. In this blog, we are using version 2 of the Traefik ingress controller for exposing services to the internet, the IPs that are whitelisted only those IPs will be able to access your domain. What is IP Whitelisting? IP whitelisting will allow you to create lists of Continue Reading

How To Bind Kubernetes Service Account with ClusterRole

Reading Time: 5 minutes Hi Readers In this blog we will see How To Bind Kubernetes Service Account with ClusterRole.So In this blog, we will first create a service account and after that, we will create a cluster role in which we will specify resources of Kubernetes and set of permission on the resources that will authorize the service account to access those resources. Understanding Authentication API server can Continue Reading

background

How To Monitor Linux Machines Using Prometheus and Grafana

Reading Time: 4 minutes Hi, readers in this blog will see How To Monitor Linux Machines Using Prometheus and Grafana. I will create an ec2 instance and will monitor that instance using Prometheus and Grafana. Prometheus Prometheus is the central component that collects the metrics from multiple nodes. It uses the concept of scraping, where target systems’ metric endpoints are contacted to fetch data at regular intervals. Node Exporter Continue Reading

jenkins

How to Use Python Wrapper to Play With Jenkins

Reading Time: 4 minutes Hi Readers!! In this blog, we will learn about the python wrapper that is python-jenkins wrapper. We will see How to Use Python Wrapper to Play With Jenkins. What is a Python Wrapper? Wrappers are also known as decorators. wrappers are the functionality available in Python to wrap a function with another function to extend its behavior. Now, the reason to use wrappers in our Continue Reading

packer

How To Create a Custom Image Using Packer In GCP

Reading Time: 3 minutes Hello Readers, We’ll see how we can create a Custom Image Using Packer In GCP in this blog. Before starting you must have to install Packer and we will use a service account to connect my google account, so make sure you have both things ready. What is Packer? Packer is a simple tool for building customized images. It is an open-source DevOps tool by Continue Reading

boto3 aws sqs

How To Send And Recieve Messages In Amazon SQS Using Boto3

Reading Time: 3 minutes Hi Folks, In this blog first we will see how to create a Queue in Amazon SQS using boto3 after that we will see How To Send And Recieve Messages In Amazon SQS Using Boto3.So stay till last and you will enjoy learning this new thing. What is Boto3? Amazon Web Services (AWS) has become a leader in Cloud Computing. We have different ways to Continue Reading

django postgres image

How to Connect PostgreSQL With Django Project

Reading Time: 4 minutes Hi, Reader in this blog we are going to see How to Connect PostgreSQL With Django Project. I will perform these tasks in a virtual environment. What is Virtualenv? A Virtualenv is a way that you can separate different python environments for different projects. So why do you want to do something like this for example say that you have multiple projects and they all Continue Reading

golang

How to Use Module in Golang

Reading Time: 3 minutes Hi folks!! In this blog, we are gonna learn How to Use a Module in Golang. We will see how to create a go module and how to add a dependency. What is Go Module? Go module is a collection of Go packages stored in a file tree with a go. mod file at its root. It is a dependency management system for go that Continue Reading

golang

A Basic Understanding of Array in GoLang.

Reading Time: 3 minutes Hi folks! In this blog we are gonna have A Basic Understanding of Array in GoLang.Array are the probably one of the most used data structure throughout programming.They are quite useful and it is versatile.It hold a bunch of data. Array In Go and most programming languages arrays are fixed length of sequence of elements and all the items in the array have to be Continue Reading

How to create Google Cloud Bucket using Google Cloud Shell

Reading Time: 3 minutes In this blog we will see how to create a Google Cloud Bucket using Google Cloud Shell.Also I will add some object to that bucket using cloud shell.So stay tuned till the end. What Is Object Storage? In object storage, files are simply referenc as objects and organize into buckets—logical namespaces that are able to hold one or more objects. While a bucket can have Continue Reading

monitor displaying computer application

How to Setup a Multinode Kubernetes Cluster on Vagrant

Reading Time: 4 minutes In this blog I have setup a step by step guide on How to Setup a Multinode Kubernetes Cluster on Vagrant.The Kubernetes cluster setup will be using kubeadm. What is Kubeadm ? Kubeadm is a command-line utility which will help you to bootstrap your kubernetes cluster that confirms to the best practices.It helps with installing and configuring kubernetes cluster. It performs the actions necessary to Continue Reading