SlideShare a Scribd company logo
1
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
AZ-204: Develop Azure
compute solutions – Part 2
2
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
AzureTalk Core Team
3
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Today’s Session Speaker
Sanjib Panigrahi
AzureEzy Core Team
MCP, Sr Software Engineer
4
Arun Pachehra
AzureEzy Core Team
MCT, Cloud Architect
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Win Azure Exam Vouchers
• Participate in quiz during session
• 6 Selected participants will get free Azure
Exam Vouchers
• 1 selected participant will get free print copy
of Demystifying Azure DevOps Services
• Must be registered on Eventbrite
• Winner will be announced in next session
5
Free Azure Exam
Vouchers
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Developer Associate- Cert Path
6
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
AZ-204: Skills Measured
• Develop Azure compute solutions (25-30%)
• Develop for Azure storage (15-20%)
• Implement Azure security (20-25%)
• Monitor, troubleshoot, and optimize Azure
solutions (15-20%)
• Connect to and consume Azure services and third-
party services (15-20%)
7
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Agenda
• Azure Functions
• Containers
• ACR & ACI
8
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Azure Functions
9
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
What is Azure Function
10
• Azure Functions are a serverless, event driven experience
that extends the existing Azure App Service platform
• Azure Functions are “nanoservices” that can scale based on
demand (only paying for the resources you use)
• Serverless
• Accelerate development
• Bind into services
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Azure Functions architecture
11
Azure Functions are built on top of Azure App Service and WebJobs SDK
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Features of Azure Functions
• Choice of language
• Pay-per-use pricing model
• Bring your own dependencies (NuGet, NPM)
• Integrated security
• Simplified integration
• Flexible development / deployment
• Open-source
12
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Azure Function Integration
• Azure Functions can be triggered by
virtually any event in Azure, other 3rd
party services or even from on-premise
systems.
• These services can trigger your function
(startup) or serve as input and output for
your code
13
Supported Integrations
• CosmosDB
• Event Hubs
• Mobile Apps (tables)
• Notification Hubs
• Service Bus (queues, topics)
• Storage (blob, queues, tables)
• GitHub (webhooks)
• Twilio (SMS messages)
• On-premises (using Service Bus)
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Triggers and bindings
• A function can have any number of input
and output bindings but can only have a
single trigger binding.
• The following is a list of different triggers
and their available bindings:
14
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Securing your Azure Functions
15
HttpTriggers can be protected by OAuth providers
such as:
• Azure Active Directory
• Microsoft Account
• Facebook
• Google
• Twitter
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Azure Function Programming Model
16
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Containers
17
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
What is a Container?
• Containers provide operating system virtualization that
allows multiple isolated applications to be run on a single
system.
• Lightweight alternative to virtual machines
• Smaller, less expensive, faster to start up, and self-
contained
18
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Difference between Containers and VMs
19
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Docker
• Docker is an open platform for developing, shipping, and
running applications
20
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Docker Commands
21
• docker run – Runs a command in a new container.
• docker start – Starts one or more stopped containers
• docker stop – Stops one or more running containers
• docker build – Builds an image form a Docker file
• docker pull – Pulls an image or a repository from a registry
• docker push – Pushes an image or a repository to a registry
• docker export – Exports a container’s filesystem as a tar archive
• docker exec – Runs a command in a run-time container
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Azure Container Instance
(ACI) And Azure Container
Registry (ACR)
22
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
What is Azure Container Registry
23
• Azure Container Registry is used to build and store the
containerized applications/images
• Connected with many other of Azure’s services like Azure
Kubernetes Service, App Service and Machine Learning
• Provides Geo-replication to manage a single registry across
multiple region.
• This service is based on the Docker Registry 2.0, which is open
sourced, hence it acts like a private Docker Registry service
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
What is Azure Container Instances?
• Azure Container Instances offers the fastest and simplest way to run a
container in Azure, without having to manage any virtual machines and
without having to adopt a higher-level service.
• Develop apps fast without managing virtual machines or having to
learn new tools—it is just your application, in a container, running in
the cloud.
• Azure Container Instances can start containers in Azure in seconds,
without the need to provision and manage VMs. • Azure Container
Instances guarantees your application is as isolated in a container as it
would be in a VM.
24
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Cont’d
25
• Develop apps fast without managing
virtual machines or having to learn new
tools—it is just your application, in a
container, running in the cloud.
• Azure Container Instances can start
containers in Azure in seconds, without
the need to provision and manage VMs.
• Azure Container Instances guarantees
your application is as isolated in a
container as it would be in a VM.
• Persistent storage, State of containers
can be saved in Azure file shares
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Break
26
27
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Demo
❑ Implement task processing logic by using Azure Functions
❑ Create an Azure Functions app in the Azure Portal.
❑ Create a local Azure Functions project using the Azure Functions Core Tools.
❑ Deploying compute workloads by using images and containers
❑ Deploy a Docker container image to Azure Container Registry.
❑ Deploy a container from a container image in Container Registry by using
Container Instances.
28
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Q & A
29
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Job opportunities
• Join our Job portal at
https://t.me/AzureTalkJobs
for special referrals and cloud
job opportunities
• Exclusive referrals in
community – Announcement
30
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Quiz
31
https://q.azureezy.com/az-204
Free Azure Exam Vouchers
Winners' announcement in next session on 6th June 2021
Register for next session at azureezy.com/az-204
Update your skills on LinkedIn and enter a chance to
win Surface Go!!
More info @ https://azureezy.com/azure-skills-feb21
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
Winners Announcements
• Develop Azure compute solutions – Part 1
32
https://azureezy.com
© 2020 AzureEzy and AzureTalk. All rights reserved!
33
Thanks!
https://azureezy.com/az-204
https://t.me/AzureTalk
https://youtube.com/AzureTalk
https://www.linkedin.com/in
/arun-pachehra/
https://www.linkedin.com/in
/sanjibpanigrahi/
https://t.me/AzureDevOpsPro
https://www.youtube.com/c/PachehraTalks

More Related Content

PDF
AZ-204 : Implement Azure security
PDF
AZ-204: Connect to and consume Azure services and third-party services - Part 1
PDF
AZ-204: Monitor, Troubleshoot & Optimize Azure Solutions
PDF
Az 104 session 8 azure monitoring
PDF
Mastering azure devOps - Dot Net Tricks
PPTX
AWS - Database Migration Service - Abdul Rasheed Feroz Khan
PPTX
Azure Web Apps Advanced Security
PPTX
Azure Automation and Update Management
AZ-204 : Implement Azure security
AZ-204: Connect to and consume Azure services and third-party services - Part 1
AZ-204: Monitor, Troubleshoot & Optimize Azure Solutions
Az 104 session 8 azure monitoring
Mastering azure devOps - Dot Net Tricks
AWS - Database Migration Service - Abdul Rasheed Feroz Khan
Azure Web Apps Advanced Security
Azure Automation and Update Management

What's hot (20)

PPTX
PPTX
Azure staticwebapps
PDF
Introduction to Azure for SMB partners
PPTX
Strategies to automate deployment and provisioning of Microsoft Azure.
PPTX
State of the EUC - 2020 What's new in End-User Computing
PPTX
Microsoft Azure Platform-as-a-Service (PaaS)
PDF
Global Azure Bootcamp 2018 - Oh no my organization went Azure
PPTX
Citrix Cloud XL - Running Ctirix in Public Cloud
PDF
Azure governance v4.0
PPTX
State of the EUC - 2020 What's new in End-User Computing
PPTX
Sydney 2015 Azure bootcamp PaaS presentation
PDF
The 2019 State of Database DevOps results, live with Donovan Brown!
PDF
Azure App Services
PPTX
Presentation Tier optimizations
PPTX
Azure governance
PPTX
Intro to Azure Static Web Apps
PDF
Global Azure Bootcamp 2017 - Why I love S2D for MSSQL on Azure
PPTX
What is Azure development?-MS Azure development
PDF
Azure Saturday: Security + DevOps + Azure = Awesomeness
PDF
Introduction to Azure
Azure staticwebapps
Introduction to Azure for SMB partners
Strategies to automate deployment and provisioning of Microsoft Azure.
State of the EUC - 2020 What's new in End-User Computing
Microsoft Azure Platform-as-a-Service (PaaS)
Global Azure Bootcamp 2018 - Oh no my organization went Azure
Citrix Cloud XL - Running Ctirix in Public Cloud
Azure governance v4.0
State of the EUC - 2020 What's new in End-User Computing
Sydney 2015 Azure bootcamp PaaS presentation
The 2019 State of Database DevOps results, live with Donovan Brown!
Azure App Services
Presentation Tier optimizations
Azure governance
Intro to Azure Static Web Apps
Global Azure Bootcamp 2017 - Why I love S2D for MSSQL on Azure
What is Azure development?-MS Azure development
Azure Saturday: Security + DevOps + Azure = Awesomeness
Introduction to Azure
Ad

Similar to Develop Azure compute solutions Part - 2 (20)

PDF
Az 104 session 2 implement and manage azure webapps and container
PDF
Az 900 session 2-core azure services
PDF
Secure Your Code Implement DevSecOps in Azure
PDF
Welcome to Azure Devops
PDF
AZ-400: Define and implement a continuous delivery and release management str...
PDF
AZ-400 Session 1: Facilitate communication and collaboration
PPTX
Docker
PDF
Az 900 Session 3 Security, privacy, compliance, trust, pricing, SLA and Lifec...
PDF
Zure Azure PaaS Zero to Hero - DevOps training day
PPTX
Intro to Azure Container App Presentation
PDF
Develop for Azure storage
PDF
Cloud Foundry Summit 2015: Managing Hybrid Deployments Using Cloud Foundry on...
PDF
Azure Zürich User Group: Azure Kubernetes Service – more than just a managed ...
PPT
Sebastien goasguen cloud stack and docker
PDF
Build containerized application using Docker and Azure.pdf
PPTX
Kudu voodoo slideshare
PPTX
Azure Stack - Azure Nights User Group
PPTX
Tokyo azure meetup #8 - Azure Update, August
PPTX
Tokyo azure meetup #8 azure update, august
PDF
Rome .NET Conference 2024 - Remote Conference
Az 104 session 2 implement and manage azure webapps and container
Az 900 session 2-core azure services
Secure Your Code Implement DevSecOps in Azure
Welcome to Azure Devops
AZ-400: Define and implement a continuous delivery and release management str...
AZ-400 Session 1: Facilitate communication and collaboration
Docker
Az 900 Session 3 Security, privacy, compliance, trust, pricing, SLA and Lifec...
Zure Azure PaaS Zero to Hero - DevOps training day
Intro to Azure Container App Presentation
Develop for Azure storage
Cloud Foundry Summit 2015: Managing Hybrid Deployments Using Cloud Foundry on...
Azure Zürich User Group: Azure Kubernetes Service – more than just a managed ...
Sebastien goasguen cloud stack and docker
Build containerized application using Docker and Azure.pdf
Kudu voodoo slideshare
Azure Stack - Azure Nights User Group
Tokyo azure meetup #8 - Azure Update, August
Tokyo azure meetup #8 azure update, august
Rome .NET Conference 2024 - Remote Conference
Ad

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Encapsulation theory and applications.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPT
Teaching material agriculture food technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Spectroscopy.pptx food analysis technology
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Cloud computing and distributed systems.
Dropbox Q2 2025 Financial Results & Investor Presentation
Encapsulation theory and applications.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Network Security Unit 5.pdf for BCA BBA.
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Digital-Transformation-Roadmap-for-Companies.pptx
Teaching material agriculture food technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
The Rise and Fall of 3GPP – Time for a Sabbatical?
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Reach Out and Touch Someone: Haptics and Empathic Computing
Encapsulation_ Review paper, used for researhc scholars
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Spectroscopy.pptx food analysis technology
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Chapter 3 Spatial Domain Image Processing.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Cloud computing and distributed systems.

Develop Azure compute solutions Part - 2

  • 1. 1
  • 2. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! AZ-204: Develop Azure compute solutions – Part 2 2
  • 3. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! AzureTalk Core Team 3
  • 4. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Today’s Session Speaker Sanjib Panigrahi AzureEzy Core Team MCP, Sr Software Engineer 4 Arun Pachehra AzureEzy Core Team MCT, Cloud Architect
  • 5. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Win Azure Exam Vouchers • Participate in quiz during session • 6 Selected participants will get free Azure Exam Vouchers • 1 selected participant will get free print copy of Demystifying Azure DevOps Services • Must be registered on Eventbrite • Winner will be announced in next session 5 Free Azure Exam Vouchers
  • 6. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Developer Associate- Cert Path 6
  • 7. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! AZ-204: Skills Measured • Develop Azure compute solutions (25-30%) • Develop for Azure storage (15-20%) • Implement Azure security (20-25%) • Monitor, troubleshoot, and optimize Azure solutions (15-20%) • Connect to and consume Azure services and third- party services (15-20%) 7
  • 8. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Agenda • Azure Functions • Containers • ACR & ACI 8
  • 9. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Azure Functions 9
  • 10. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! What is Azure Function 10 • Azure Functions are a serverless, event driven experience that extends the existing Azure App Service platform • Azure Functions are “nanoservices” that can scale based on demand (only paying for the resources you use) • Serverless • Accelerate development • Bind into services
  • 11. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Azure Functions architecture 11 Azure Functions are built on top of Azure App Service and WebJobs SDK
  • 12. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Features of Azure Functions • Choice of language • Pay-per-use pricing model • Bring your own dependencies (NuGet, NPM) • Integrated security • Simplified integration • Flexible development / deployment • Open-source 12
  • 13. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Azure Function Integration • Azure Functions can be triggered by virtually any event in Azure, other 3rd party services or even from on-premise systems. • These services can trigger your function (startup) or serve as input and output for your code 13 Supported Integrations • CosmosDB • Event Hubs • Mobile Apps (tables) • Notification Hubs • Service Bus (queues, topics) • Storage (blob, queues, tables) • GitHub (webhooks) • Twilio (SMS messages) • On-premises (using Service Bus)
  • 14. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Triggers and bindings • A function can have any number of input and output bindings but can only have a single trigger binding. • The following is a list of different triggers and their available bindings: 14
  • 15. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Securing your Azure Functions 15 HttpTriggers can be protected by OAuth providers such as: • Azure Active Directory • Microsoft Account • Facebook • Google • Twitter
  • 16. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Azure Function Programming Model 16
  • 17. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Containers 17
  • 18. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! What is a Container? • Containers provide operating system virtualization that allows multiple isolated applications to be run on a single system. • Lightweight alternative to virtual machines • Smaller, less expensive, faster to start up, and self- contained 18
  • 19. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Difference between Containers and VMs 19
  • 20. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Docker • Docker is an open platform for developing, shipping, and running applications 20
  • 21. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Docker Commands 21 • docker run – Runs a command in a new container. • docker start – Starts one or more stopped containers • docker stop – Stops one or more running containers • docker build – Builds an image form a Docker file • docker pull – Pulls an image or a repository from a registry • docker push – Pushes an image or a repository to a registry • docker export – Exports a container’s filesystem as a tar archive • docker exec – Runs a command in a run-time container
  • 22. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Azure Container Instance (ACI) And Azure Container Registry (ACR) 22
  • 23. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! What is Azure Container Registry 23 • Azure Container Registry is used to build and store the containerized applications/images • Connected with many other of Azure’s services like Azure Kubernetes Service, App Service and Machine Learning • Provides Geo-replication to manage a single registry across multiple region. • This service is based on the Docker Registry 2.0, which is open sourced, hence it acts like a private Docker Registry service
  • 24. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! What is Azure Container Instances? • Azure Container Instances offers the fastest and simplest way to run a container in Azure, without having to manage any virtual machines and without having to adopt a higher-level service. • Develop apps fast without managing virtual machines or having to learn new tools—it is just your application, in a container, running in the cloud. • Azure Container Instances can start containers in Azure in seconds, without the need to provision and manage VMs. • Azure Container Instances guarantees your application is as isolated in a container as it would be in a VM. 24
  • 25. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Cont’d 25 • Develop apps fast without managing virtual machines or having to learn new tools—it is just your application, in a container, running in the cloud. • Azure Container Instances can start containers in Azure in seconds, without the need to provision and manage VMs. • Azure Container Instances guarantees your application is as isolated in a container as it would be in a VM. • Persistent storage, State of containers can be saved in Azure file shares
  • 26. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Break 26
  • 27. 27
  • 28. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Demo ❑ Implement task processing logic by using Azure Functions ❑ Create an Azure Functions app in the Azure Portal. ❑ Create a local Azure Functions project using the Azure Functions Core Tools. ❑ Deploying compute workloads by using images and containers ❑ Deploy a Docker container image to Azure Container Registry. ❑ Deploy a container from a container image in Container Registry by using Container Instances. 28
  • 29. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Q & A 29
  • 30. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Job opportunities • Join our Job portal at https://t.me/AzureTalkJobs for special referrals and cloud job opportunities • Exclusive referrals in community – Announcement 30
  • 31. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Quiz 31 https://q.azureezy.com/az-204 Free Azure Exam Vouchers Winners' announcement in next session on 6th June 2021 Register for next session at azureezy.com/az-204 Update your skills on LinkedIn and enter a chance to win Surface Go!! More info @ https://azureezy.com/azure-skills-feb21
  • 32. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! Winners Announcements • Develop Azure compute solutions – Part 1 32
  • 33. https://azureezy.com © 2020 AzureEzy and AzureTalk. All rights reserved! 33 Thanks! https://azureezy.com/az-204 https://t.me/AzureTalk https://youtube.com/AzureTalk https://www.linkedin.com/in /arun-pachehra/ https://www.linkedin.com/in /sanjibpanigrahi/ https://t.me/AzureDevOpsPro https://www.youtube.com/c/PachehraTalks