Azure Container Instances Flashcards

1
Q

What allows you to launch containers without the need to worry about configuring or managing the underlying virtual machine?

A

Azure Container Instances (ACIs)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are Container Groups?

A

Container Groups are collection of containers that get scheduled on the same host machine. The containers in a container group share: Lifecycle, Resources, Local network, and storage volumes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What specifies what a container should do when its process has been completed?

A

A container restart policy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Container Environment Variables?

A

Environment variables (Env Vars) allow you to pass configuration details to your containers. Environment variables can be set via the Azure Portal, CLI or PowerShell.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do we persist state beyond the lifetime of the container?

A

Azure Containers are stateless by default. When a container crashes or stops all state is loss. To persist state you need to mount an external volume.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly