Saturday, April 18, 2020

what are the kinds of webapp in the azure cloud services ?

There are four kinds of webapps: ( Important while learning Az300 ).

1.  Azure Function Apps ( this is a kind of webapp, Example: Trigger function ( serverless architecture, this is similar like AWS lambda function ).

2. Azure Webapp ( this is a kind of webapp, Example: host your app to the outside world ).

3. Azure Logicapp ( this is a kind of webapp, Example: logic based, Send Email / Mobile notifications ).

4. Event Grid ( topics ) ( this is a kind of webapp, Example: contain events, events may be created P1,P2,P3  priority based  ( basic flow : Priority > ticket > assigned to particular app ).

The below  procedure is same for  every webapp:

>>>>>>

Example:


Azure Functions :

What is Serverless Architecture and a good example for that ?

>  Go to Azure function app, and 

    1.  Search for functionapp and  Create a function app.
    2.  Created with the access URL :  https://abc.azurewebsites.net
    3.  simple way to identify whether it is a webapp or not , using this  https://*.azurewebsites.net (if it has the azurewebsites in it is a webapp).
    4. every function app can be a part of the Azure App service plan.
   
Example: 

abcfunctionapp to upgrade the functions automatically whenever new code is committed to the master branch.

how to do that ?

1. Create a functionapp named  abcfunctionapp.
2. Click on the abcfunctionapp and select the  Deployment center  and integrate the sourcecode repository  ( git, azure repos ).
3. Application ( Dockerfile path, port and Docker build context ).
4. Resources.







No comments:

Post a Comment