Cloud

person using laptop computer during daytime

How to set up Azure internal load balancer?

Reading Time: 4 minutes Introduction The Internal load balancer manages load for a private network with any inbound access from the public platform. As in the diagram below, the primary load balancer managing load from the internet is a public-type load balancer. But, the VMs communication to storage or database is managed through a type-internal load balancer. Internal Load Balancer Setup Let us see our setup which we will Continue Reading

people sitting on gang chairs

How to Send/Recieve data in Azure Event Hub with python?

Reading Time: 4 minutes Azure Event Hub Setup: We will create an Eventhub namespace, an event hub and a storage account on Azure Cloud. And then, we will integrate them using a connection string. Before we create other resources, we will create a common resource group: rg-eventhub. Step 1: Event Hub Namespace Now we create an event hub namespace with the following configurations. And then, verify and Create. Step Continue Reading

female software engineer coding on computer

How to build and push a docker image in ACR using the ADO pipeline

Reading Time: 3 minutes What is ACR? ACR is known as Azure Container Registry. It is a cloud-based service for managing private registries on Docker Registry. We can use it to create and maintain Docker container registries in the Azure cloud and manage to store Docker images and artifacts privately. These are the following steps to build and push the docker image to ACR using ADO: Step1. Firstly you Continue Reading

code projected over woman

How to create resources using an ARM template locally?

Reading Time: 3 minutes Introduction ARM template is used to create resources as per the Azure Resource Manager. The template file is written in JSON. And we can deploy it using the azure portal or locally using Azure CLI or Azure PowerShell. Here, in this blog, we will deploy the template using the local method. Prerequisite Preparations for the ARM template 1. VS Code Extension If you have visual Continue Reading

Getting Started with Snyk

Reading Time: 2 minutes Snyk is a platform that scans, fixes security, vulnerabilities and prioritize your code, open source dependencies, container images and Infrastructure as a Code (IaC). In basic terms, it works as a scanning tool (like an antivirus) which helps you to prevent your code from unwanted vulnerabilities. Snyk is a Boston-based cybersecurity company specializing in cloud computing and founded in 2015. It integrates the open source code that Continue Reading

Concluding deal with coding company

HOW TO BUILD AN API PROXY WITH APIGEE

Reading Time: 5 minutes Hello Readers ! Hope you all are doing well . So today I am here with anew post and In this we’ll see how we can build an api proxy with apigee . API works as a security layer and it can also be used as a messenger that transfer data from one place to another .Have patient and stick with me till end and Continue Reading

gray laptop computer showing html codes in shallow focus photography

How to Create our first Cloud Function in Google Cloud Platform

Reading Time: 4 minutes Hello Readers! In this blog we we are going to see How to create our first Cloud Function in Google Cloud Platform. Let’s See first what is google cloud function? Let’s get started with Google Cloud Functions Cloud Function Cloud Functions will be responsible for scaling up your code to handle the millions of requests come in. You don’t really need to worry about where this Continue Reading

close up photo of programming of codes

How to Create a Storage Bucket in GCP with Terraform?

Reading Time: 3 minutes In this article, we are going to provision a Cloud Storage Bucket and maintain it with the help of terraform. Let us first understand cloud storage first What is Cloud Storage(Buckets)? Cloud Storage is the Google Cloud platform’s object storage system. Objects here can be of any type, either files or large binary objects. These objects are organized into buckets. Please note that cloud storage Continue Reading

Spring Cloud Pub/Sub

Reading Time: 2 minutes Cloud Pub/Sub Google Cloud Pub/Sub allows services to communicate asynchronously, with latency on the order of 100 milliseconds. Pub/Sub is used for streaming analytics and data integration pipelines to ingest and distribute data. It is equally effective as a messaging- oriented middleware for service integration or as a queue to parallelised tasks. Pub/Sub enables to create systems of event producers and consumers, called publishers and subscribers. Publishers communicate Continue Reading

Cloud testing in k6 | Tech

Reading Time: 3 minutes Hi Readers, In this blog, I will explore how to run a test script in the K6 cloud to visualise and analyse the results on the web app in real-time. K6 Basically, It is a free and open-source load testing tool for testing the performance of APIs. K6 has a goal-oriented testing mode, and users can define goals using Thresholds when building their tests.  K6 cloud tests from the Continue Reading

Storage Mechanism In Open Stack

Reading Time: 2 minutes What is Open Stack ? Open Stack is an open source platform that uses pooled virtual resources to build and manage private and public clouds. It handle the core cloud-computing services of compute, networking, storage, identity, and image services It offers unlimited storage pools and supports block-IO from a variety of vendors, as well as object file storage. Open Stack Storage Option : There are 4 storage option in Open Stack Block Storage Continue Reading

“All You Need To Know About Open Stack”

Reading Time: 3 minutes Let’s us know about Open Stack in easy words OPEN STACK There are many open source platforms where Open Stack is one of the most famous and trendily open source. It usually uses pooled virtual resources that to build the public clouds and also to manage private and public clouds. Open Stack consists of a tool that contain projects to handle many functionalities of cloud Continue Reading

coding script

How to setup VPC via Terraform

Reading Time: 3 minutes In this blog, we will create a Terraform script for setting up the VPC in aws. VPC enables us to launch the aws resources into a virtual network that we define. It is logically isolated from other virtual networks in the AWS Cloud. You can specify an IP address range for the VPC, add subnets, associate security groups, and configure route tables. Terraform scripts enables Continue Reading