Securing App Service – PaaS Compute Options
If you are deploying your application to a virtual machine, you need to write code to integrate with an authentication provider. For example, let’s say you want your end users…
Custom Domains – PaaS Compute Options
Adding custom domain names to your application offers several advantages such as they are easy to remember, they offer branding, and they enable easier integration with other services. As you…
Backup – PaaS Compute Options
Since you are hosting mission-critical applications in Azure App Services, it’s important to know about the options available for backup and restore. As the name suggests, the Backup and Restore…
Container Instances – PaaS Compute Options
Containers took virtualization of computing resources to the next level. Virtual machines run on specialized software called hypervisors. In traditional virtualization, you used to create separate virtual machines for isolating…
Docker – PaaS Compute Options
In Figure 9.11, you saw that containers are deployed with the help of a container runtime that is hosted on the host OS. Docker is an example of a container…
Azure Container Instances 2 – PaaS Compute Options
Building and Running Containers in Azure 3. You need to add the following lines to the file: FROM nginx:latest COPY ./index.html /usr/share/nginx/html/index.html <html> <body> Hello all </body> </html>…
Azure Container Instances – PaaS Compute Options
As you have seen in the Docker architecture, you can deploy containers to a virtual machine running on Azure. Since virtual machines are an infrastructure-as-a-service solution, more administration and intervention…
Container Groups 2 – PaaS Compute Options
AKS is a completely platform-managed cluster, and you can easily create Kubernetes clusters in Azure and deploy your applications. AKS offloads the complex management and configuration tasks to Azure so…
Container Groups – PaaS Compute Options
A container group is a collection of containers that are scheduled on the same host machine. Since they are scheduled to the same host machine, you can share lifecycles, resources,…
Terminology – PaaS Compute Options
There are different terminologies that are associated with Kubernetes. In the previous section, you might have noticed the keyword pod; that is Kubernetes terminology. Figure 9.15 explains the terminology. FIGURE…