Deploy and manage Azure compute resources Flashcards
Components of Azure Disk Encryption?
- VM must be backed up to the Recovery Service Vault
- Integrated with Azure Key Vault
- BitLocker must be enabled for Windows
- DM-Crypt must be enabled for Linux
What is Kubernetes?
This is a tool that is used to manage container-based applications
What is Kubernetes used for?
This is the ideal tool that teams use to deploy microservices-based applications
What types of applications dose Kubernetes support?
Stateless applications
Stateful applications
Kubernetes architecture is split into what two sides?
Azure-managed control plane
Customer-managed side
What is the API server?
This is used to provide interactions for management tools
What is ectd?
This is used to maintain the state of Kubernetes clusters and configuration. This is a key value store. (Database)
What is the scheduler?
This determines which nodes can be used run workloads and then starts the workloads accordingly
What is the controller manager?
This handles the controllers that are used to control the replicating of pods and node operations.
What are the components on the customer-managed control panel of Kubernetes?
API server
database server (ectd)
scheduler
controller manager
What are the features on the Azure-managed control panel of Kubernetes?
nodes
kube-proxy
kubelet
container runtime
What is a node?
Nodes are used for running the container based applications
What is kube-proxy?
This is used to route network traffic and manages IP addressing for services and pods.
What is kubelet?
This is used to take commands from control plane and schedules the running of requested containers.
What is container runtime?
This is used to run the containers and also helps the containers interact with network and storage resources.
What is a pod?
This is used to run and instance of the application. The pod is represents a single instance of the application. Normally each pod is mapped to a single container.
What is a deployment?
This is used to represent the deployment of one or more identical pods.