DotNet Mirror
  DNM facebook   DNM Google+   DNM Twitter   
Stats
Total Count : 12
Resources Publish New Article  
 
Azure App Service - .NET Core 3.1(LTS) run time stack available for Windows and Linux
Ashok Nalam
By: Ashok Nalam | 25 Apr 2020 | Microsoft Azure | Views: 5951 | Comments: 0 | Tags:.NET Core  azure app service  azure portal  Linux  windows 
How to deploy your Web App using Github Actions on Azure App Service
Ashok Nalam
We will deploy the Web application using Github Actions on Azure App Service. Let us create a sample ASP.NET Core Razor web application and deploy to Azure app service using Github Actions. Also, subsequent code check-ins are going to deploy using Github Actions from Continuous deployment.
By: Ashok Nalam | 01 May 2020 | Microsoft Azure | Views: 75657 | Comments: 0 | Tags:azure  azure app service  azure devops  azure portal  GitHub 
Rename Azure App Service Plan(ASP) in Azure Portal
Ashok Nalam
By: Ashok Nalam | 20 Aug 2020 | Microsoft Azure | Views: 12969 | Comments: 0 | Tags:azure  azure app service  azure functions  azure portal  rename 
Azure functions move or change to new resource group using Azure portal
Ashok Nalam
By: Ashok Nalam | 24 Aug 2020 | Microsoft Azure | Views: 5304 | Comments: 0 | Tags:azure  azure app service  azure functions  azure portal 
What is Azure Functions Premium plan?
Ashok Nalam
Once the Azure functions are developed and deployed to azure, then you pay per use pricing model. Azure function has below hosting plans
  1. Dedicated app service plan
  2. Consumption plan
  3. Premium plan (called as elastic premium plan)
Azure functions Premium plan is a higher plan compared to other 2 plans. It contains following features
  • VNET Integration- To add more security to your app, you can configure a VNET and add your function app. With this, your function app is secured with service endpoints. VNET integration is not available in other plans.
  • Pre-warmed instances to avoid cold start - In consumption plan, if there are no execution/calls to your function app it scales in to Zero instances. Once it goes to zero instances, if we make any function call, it takes some time(called as cold start time) to respond to the first call (from zero to one). This latency can be avoided in Premium plan with pre-warmed instances.
  • Unlimited execution duration - Consumption plan has a 10 minutes limit whereas Premium plan defaults to 30 minutes but you can modify it to unlimited(60 minutes guaranteed). Use functiontTimeout property in host.json file to change the configuration.
  • Premium hardware - Provides best cores(1, 2 and 4), memory and storage.
  • Multiple function apps can be deployed to the same plan and all function apps in premium plan shares pre-warmed active instances.
  • Automatic Scaling - Like consumption plan, your app will scale in or scale out based on the need.
Note: Premium plan is charged based on the number of  core seconds, memory used and configured pre-warmed instances.
By: Ashok Nalam | 12 Sep 2020 | Microsoft Azure | Views: 9528 | Comments: 0 | Tags:azure  azure app service  azure functions 
How do I deploy a function app in Azure?
Ashok Nalam
Once the Azure functions are developed and there are different ways you can deploy your app to Azure. The different deployment methods are
  1. Tool based deployments - deployments are managed locally. Useful when you are doing local development and requires multiple ad-hoc deployments manually.
    • Visual Studio Code publish
    • Visual Studio publish
    • Core tools deployments (using Zip deploy or docker container)
  2. App Service Deployment - deployments are managed from the Azure App Service under Deployment section. Useful when you want to deploy as part of source control commits or from a container registry.
    • Deployment center - Continuous deployment using Azure Repos, GitHub, Bitbucket and Local Git or Manual deployment using One drive, Dropbox, External Git and FTP.
    • Container deployments
  3. External Pipelines - deployment are managed by pipelines. Useful for Production scenarios where you want to do some additional validations as part CI/CD.
By: Ashok Nalam | 13 Sep 2020 | Microsoft Azure | Views: 4630 | Comments: 0 | Tags:azure  azure app service  azure functions 
How to add or update App settings in Azure functions from portal
Ashok Nalam
In this article, we will see how to add/edit/delete/filter application settings in Function App from Azure portal. Also we will look at bulk editing of application settings using Advanced edit option.
By: Ashok Nalam | 18 Sep 2020 | Microsoft Azure | Views: 7283 | Comments: 0 | Tags:azure  azure app service  azure app settings  azure functions 
Configure Azure Active Directory(AAD) login on your Function App with App Service Authentication
Ashok Nalam
In this article we will see how to configure Azure Active directory authentication provider on your Azure Function app.
By: Ashok Nalam | 19 Sep 2020 | Microsoft Azure | Views: 5680 | Comments: 0 | Tags:azure  azure active directory  azure app service  azure functions 
Configure Twitter login on your Azure Function App with App Service Authentication
Ashok Nalam
In this article we will see how to configure Twitter authentication provider on your Azure Function app.
By: Ashok Nalam | 20 Sep 2020 | Microsoft Azure | Views: 5897 | Comments: 0 | Tags:azure  azure app service  azure functions  twitter 
Configure Facebook login on your Azure Function App with App Service Authentication
Ashok Nalam
In this article, we will see how to configure the Facebook authentication provider on your Azure Function app.
By: Ashok Nalam | 26 Sep 2020 | Microsoft Azure | Views: 6179 | Comments: 0 | Tags:azure  azure app service  azure functions  azure portal  facebook 
Configure Google login on your Azure Function App with App Service Authentication
Ashok Nalam
In this article, we will see how to configure the google authentication provider on your Azure Function app.
By: Ashok Nalam | 27 Sep 2020 | Microsoft Azure | Views: 8049 | Comments: 2 | Tags:azure  azure app service  azure functions  azure portal  google 
How to rename the Azure App Service Web App URL
Ashok Nalam
By: Ashok Nalam | 15 Mar 2023 | Microsoft Azure | Views: 473 | Comments: 2 | Tags:azure  azure app service  azure functions  rename