2.2 Core resources available in Azure Flashcards
What are the steps to create an Azure VM?
Click CREATE A RESOURCE Click COMPUTE Click SEE ALL LINK Click a desired VM Click CREATE Click CREATE NEW next to RESSOURCE GROUP to create a resource group
Is Azure VM an IaaS?
Yes
What is PLANNED MAINTENANCE?
planned updates that Microsoft makes to host computers.
Includes: OS update, driver updates, ect.
What are AVAILABILITY SETS?
Availability sets protect your VMs from maintenance events and downtime caused by hardware failures.
For full protection, you must deploy at least two VMs in an availability set.
What is a FAULT DOMAIN?
A logical representation of the physical rack in which a host computer is installed (the host of a VM).
How many FAULT DOMAINS does Azure assign my default?
Two fault domains are assigned by default to an availability set. This ensure fault tolerance when one fault domain (computer) goes down.
What is an UPDATE DOMAIN?
Update domains are designed to protect you from situations where the host computer is being rebooted.
How many update domains does Azure create by default for an availability set?
Five update domains are created by default.
What in particular do update domains protect you from?
Update domains protect you from downtime associated with planned maintenance events.
What is a FRONT END?
The front end is a special VM running software that allows it to distribute traffic to VMs that are actually running your web app.
What is an App Service plan?
An App Service plan is created within a specific Azure region. It specifies how many VMs an app runs on.
Are you charged for an App Service Plan even when no web apps are running?
Yes. You are still charged even with the web apps not running. You must delete the web app to avoid being charged.
How many VMs do the following tiers allow you to scale out to?
Basic Tier
Standard Tier
Premium Tier
PremiumV2 tier
Basic tier is 3 VMs
Standard tier is 10 VMs
Premium and PremiumV2 is up to 20 VMs
What service model are Web Apps?
PaaS
What are Azure Container Instances (ACI)?
ACI is a PaaS service that offers the ability to run containerized applications easily.
What is a CONTAINER?
It is a zipped version of an image. It includes everything an application needs to run (ex a database engine, a web server, ect).
Containers typically operate within an isolated environment with its own network, storage, ect.
Containers running on the same machine cannot access data and systems used by another container.
What does a computer need to run an application in a container?
A computer needs to have a container runtime installed IOT run an application in a container.
What is a Docker?
A Docker is used to run applications using containers.
Are containers a good choice to run applications that get heavy use from many people?
No. Azure Kubernetes Service (AKS) would be a better solution.
Can you change the DNS Name Label after creating an instance for a container?
No you cannot.
What is Kubernetes?
Kubernetes is a container orchestration service. It monitors containers and ensures they are always running. It can scall containers when needed.
What is a POD that is created by Kubernetes?
A pod is a group of related containers that share resources.
This allows you to get away from resource sharing restrictions that occur in multi-container environments.
Can containers in one POD share resources with a container in another POD?
No
What is a computer that Kubernetes pods runs on called?
A node or worker.
This computer must have a container runtime (Docker) running on it.
What is a Kubernetes master?
A master node that controls multiple nodes within a Kubernetes instance.
What is a Kubernetes cluster?
The entire environment that includes the Kubernetes master and all of its nodes.
How does Azure Kubernetes Service (AKS) relieve the burden of dealing with the Kubernetes master?
AKS creates the master and the nodes for you. and simplifies the management of the cluster.
What is Windows Virtual Desktop (WVD)?
It is a PaaS in Azure and provides desktop virtualization that’s managed by Microsoft.
What is a tenant in Windows Virtual Desktop?
A tenant is a collection of one or more “host pools”. Host pools consist of session hosts and one or more app groups that represent the applications and OS that users are able to access.
What is an Azure virtual network (VNet)?
A VNet allows Azure services to communicate with each other and the internet.
Can be used to facilitate communications between on-premises resources and Azure resources.