Azure Developer Associate (YT) - ACI Flashcards

1
Q

wat is een Azure Container Instance (ACI)

A

Je kunt een container opstarten zonder je druk te maken over de configuratie van de VM. Gemaakt voor:
* simpele applicaties
* task automation
* build jobs

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

Voordeel van ACI tegenover VM?

A
  • ACI draait in een paar seconden > VM minuten
  • ACI: billed per > VM: per uur
  • ACI: sizing aan te passen > VM: vaste templates
  • ACI: Azure files af te dwingen
  • ACI: hebben een fully qualified domain name (FQDN)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wat is een Container group?

A

Collectie container die je kunt schedulen op de zelfde host.
De groep deelt samen:
* lifecycle
* resources
* local network
* storage volume

te deployen met ARM template of YAML file

multi-container groups hebben alleen Linux container op dit moment

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

Wat zijn de container restart policies?

A
  • always (default) > web-server
  • Never > run one time only background job
  • OnFailure > ?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wat zijn Env Vars?

A

Vars zijn config details die je een container meegeeft via Azure Portal, CLI of Powershell.
met –secure-enviroment-variables geef je secure vars mee

az container create

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

Wat doet persistent storage?

A

Azure Container zijn stateless. Om de state vast te houden koppel je een externe storage eraan. Dat kan zijn: Azure files/Secret Volume/Empty dir/Cloud git repo
Dit geef je mee in je PS of CLI met
–azure-file-volume(account/share/mount)

az container create

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

Container troubleshooting

A
  • az container logs > pull log files
  • az container attach > get diagnostic info
  • az container exec > start interactive container
  • az container metrics list > Get Metrics like CPU

Je geeft altijd –resource-group & –name mee

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