What is Kubernetes? Kubernetes is a portable, adaptable open-source framework for containerized workload deployment, scaling, and management. Kubernetes abstracts away difficult container management and gives us declarative configuration to orchestrate containers in various computing environments. We have the same flexibility and convenience of use with this orchestration platform as we…
Month: December 2022
HTPP trigger to Azure Storage Queue
Introduction Azure Functions is an on-demand serverless cloud compute service that provides all of the constantly updated infrastructure and resources required to run your applications. This service allows users to run event-triggered code without the need for infrastructure provisioning or management. As a trigger-based service, it executes a script or code in…
Azure Logic Apps to create an automated workflow to implement RSS feed of a website to email account.
Summary: In this blog we are going to create an automated workflow that integrates two services, an RSS feed for a website and an email account using Azure Logic Apps. What is Azure Logic Apps? Azure Logic Apps offers low-code/no-code tools for you to create highly scalable integration solutions for…
Scheduling AWS Lambda Functions by configuring the CloudWatch Events, monitoring through CloudWatch Metrics and CloudWatch Logs.
The blog deals with the concepts of AWS Lambda function trigger by configuring the CloudWatch(EventBridge) events.
Azure File Share: Basic Management with Python SDK
Within Azure, file shares (fileshares) are one of the two chief systems of cloud storage, the other being blob storage. This guide will walk through an example of how the Python SDK can be used to manage your files in an Azure file share. We will walk through a Python…
Timer Trigger Operation ⏲️
Objective: To understand the working of Timer Trigger. In addition to building and invoking a python function schedule to print every 15s. Prerequisite: Python 3.8 – Python 3.10 (Python 3.11 is not supported yet.) Azure Core Tools – Download azure core tools from here VS Code Step 1: Open VS…
Working with S3 buckets in Python using Boto3
Amazon Simple Storage Service(Amazon S3) is an object storage service commonly used for data analytics applications, machine learning, websites, and many more. To start programmatically working with Amazon S3, you must have an AWS account and install the AWS Software Development Kit (SDK) with the settled-up AWS credentials. This article will…
What is Azure Bastion and How to create it.
Introduction: Hello! In this blog, I will be explaining a detailed article on Azure Bastion and How to create azure bastion. I’m sure you’re familiar with RDP and SSH if you manage a remote server or virtual machine. RDP and SSH are both used to gain remote access to virtual…
Scheduling Email Notifications Using Timer Triggers in Azure Functions
A simple way to send email notifications from your Azure Function App using time trigger.
Creating EC2 instance using AWS Lambda and Boto3 Python SDK.
EC2 is the main computational element of the technological stack among the wide range of services that Amazon provides. By offering safe and scalable compute resources in the cloud, EC2 actually makes life simpler for developers. It substantially simplifies the process of scaling up or down, can be linked with…