Virtual Machine Extensions – Automation, Deployment, and Configuration of Resources
By now, you know how to create a VM and gain access to the VM. Let’s say you want to create hundreds of VMs and want to configure them with…
Azure App Services 2 – PaaS Compute Options
4. If you have selected the resource group and region that contains an existing App Service plan that matches the selected operating system, then that plan will be autoselected. Otherwise,…
Creating Deployment Slots – PaaS Compute Options
You can create new deployment slots with an empty or cloned configuration. There are certain properties that can be swapped, and some of them cannot be swapped during the swap…
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…
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>…
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,…
Networking – PaaS Compute Options
Networking is crucial in AKS because without networking you will not be able to establish communication between the components. As you saw in Figure 9.16, the Kube-proxy service running on…
Storage – PaaS Compute Options
When you run applications, you need to store and retrieve data. For certain applications, you don’t need the data to be persistent. However, in some other cases, you need to…
Scaling – PaaS Compute Options
When you run applications in AKS, you may need to increase or decrease the number of computer instances based on the demand. AKS offers several scaling mechanisms to accommodate the…