Posts

Showing posts with the label Azure

Deploying a .NET Application on Azure Kubernetes Service (AKS) - Step-by-Step Guide

Image
Deploying a .NET application on Azure Kubernetes Service (AKS) involves several steps to ensure that your application is containerized, deployed, and running in the AKS cluster. Here's a guide to help you through the process: Prerequisites: Azure Subscription : You need an Azure subscription. If you don’t have one, create it here . Azure CLI : Install the Azure CLI if you haven’t already. Install Azure CLI . Kubernetes CLI (kubectl) : Install kubectl to interact with your AKS cluster. Install kubectl. Docker : Ensure Docker is installed for building the container image. Install Docker . .NET SDK : Install the .NET SDK to build your .NET application. Install .NET SDK . Steps for Deployment: 1. Prepare the .NET Application First, ensure your .NET application is ready for deployment. If you don't have a .NET app yet, you can create a new one: dotnet new webapi -n MyDotNetApp cd MyDotNetApp 2. Create a Dockerfile In the root of your project directory, create a Dockerfile to cont...

Build REST CRUD APIs with Spring Boot, Azure Cosmos DB and Azure Cosmos DB SQL API

Image
Hello everyone, Hope you are doing well. In this tutorial, you will learn how to build REST CRUD APIs with Spring Boot, Azure Cosmos DB, and Azure Cosmos DB SQL API. A little bit of Background Azure Cosmos DB Azure Cosmos DB is a fully managed NoSQL database for modern app development. Single-digit millisecond response times, and automatic and instant scalability, guarantee speed at any scale.   More Info -  https://docs.microsoft.com/en-us/azure/cosmos-db/introduction Azure Cosmos DB SQL API Azure Cosmos DB SQL API accounts provide support for querying items using the Structured Query Language (SQL) syntax. More Info -  https://docs.microsoft.com/en-us/azure/cosmos-db/sql/tutorial-query-sql-api Spring Boot Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can "just run".  More Info -  https://spring.io/projects/spring-boot After completing this tutorial what we will build?   We will build REST APIs  C...

Building Reactive REST CRUD APIs with Spring Boot, Spring WebFlux, Azure Cosmos DB and Azure Cosmos DB SQL API

Image
Hello everyone, Hope you are doing well. In this tutorial, you will learn how to build reactive REST CRUD APIs with Spring Boot, Spring WebFlux, Azure Cosmos DB, and Azure Cosmos DB SQL API. A little bit of Background Azure Cosmos DB Azure Cosmos DB is a fully managed NoSQL database for modern app development. Single-digit millisecond response times, and automatic and instant scalability, guarantee speed at any scale.   More Info -  https://docs.microsoft.com/en-us/azure/cosmos-db/introduction Azure Cosmos DB SQL API Azure Cosmos DB SQL API accounts provide support for querying items using the Structured Query Language (SQL) syntax. More Info -  https://docs.microsoft.com/en-us/azure/cosmos-db/sql/tutorial-query-sql-api Spring Boot Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can "just run".  More Info -  https://spring.io/projects/spring-boot Spring WebFlux The original web framework included in the Spring...