Skip to content

Commit f4a1e9f

Browse files
committed
acrolinx updates to assessmeent
1 parent c085483 commit f4a1e9f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

learn-pr/wwl-data-ai/deploy-containers-azure-container-apps/8-module-assessment.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@ durationInMinutes: 5
1313
content: |
1414
quiz:
1515
questions:
16-
- content: "You are deploying an AI document-processing API that must access a private endpoint and share logs and networking settings across multiple container apps. Which Azure Container Apps resource provides that shared boundary?"
16+
- content: "You're deploying an AI document-processing API that must access a private endpoint and share logs and networking settings across multiple container apps. Which Azure Container Apps resource provides that shared boundary?"
1717
choices:
1818
- content: "A Container Apps environment"
1919
isCorrect: true
2020
explanation: "A Container Apps environment is the shared boundary that groups container apps for networking and observability integration, which helps you manage shared settings for a solution."
2121
- content: "A Container Apps revision"
2222
isCorrect: false
23-
explanation: "A revision is a versioned snapshot of a single container app's configuration. It does not provide a shared boundary for multiple apps."
23+
explanation: "A revision is a versioned snapshot of a single container app's configuration. It doesn't provide a shared boundary for multiple apps."
2424
- content: "A replica"
2525
isCorrect: false
26-
explanation: "A replica is an instance of a revision that runs your workload. Replicas scale your app, but they do not define shared networking or logging settings across apps."
26+
explanation: "A replica is an instance of a revision that runs your workload. Replicas scale your app, but they don't define shared networking or logging settings across apps."
2727
- content: "You want a consistent, source-controlled deployment for a container app so that configuration is reviewed like code. Which approach best supports that goal?"
2828
choices:
2929
- content: "Use `az containerapp create --yaml` and `az containerapp update --yaml` with a YAML file stored in source control"
3030
isCorrect: true
3131
explanation: "Using YAML definitions lets you store configuration in source control and apply it consistently across environments using CLI commands."
3232
- content: "Use `az containerapp update --set-env-vars` for all changes without maintaining a configuration file"
3333
isCorrect: false
34-
explanation: "`--set-env-vars` is useful for incremental updates, but it does not provide a durable, reviewable source of truth for the full app configuration."
34+
explanation: "`--set-env-vars` is useful for incremental updates, but it doesn't provide a durable, reviewable source of truth for the full app configuration."
3535
- content: "Rely on image tags and redeploy with `az containerapp update --image` to apply environment-specific configuration"
3636
isCorrect: false
37-
explanation: "Image tags are not a reliable configuration mechanism. Configuration should be separated from the image and applied through environment variables, secrets, and app settings."
38-
- content: "Your container app needs an API key for an embeddings provider. You do not want to store the value in a YAML file. Which pattern should you use?"
37+
explanation: "Image tags aren't a reliable configuration mechanism. Configuration should be separated from the image and applied through environment variables, secrets, and app settings."
38+
- content: "Your container app needs an API key for an embeddings provider. You don't want to store the value in a YAML file. Which pattern should you use?"
3939
choices:
4040
- content: "Store the secret in Container Apps secrets and reference it from an environment variable"
4141
isCorrect: true
@@ -53,10 +53,10 @@ quiz:
5353
explanation: "Container Apps uses revisions to version configuration changes. Listing revisions helps you verify which revision is active after an update."
5454
- content: "Run `az containerapp registry list`"
5555
isCorrect: false
56-
explanation: "Registry configuration helps with image pulls, but it does not show which revision is active after an update."
56+
explanation: "Registry configuration helps with image pulls, but it doesn't show which revision is active after an update."
5757
- content: "Run `az containerapp secret list`"
5858
isCorrect: false
59-
explanation: "Secrets can affect app behavior, but listing secrets does not show which revision is active or which configuration version is running."
59+
explanation: "Secrets can affect app behavior, but listing secrets doesn't show which revision is active or which configuration version is running."
6060
- content: "A container app fails to start after you update the image. You need fast feedback to diagnose the issue. Which command is the best first step?"
6161
choices:
6262
- content: "Run `az containerapp logs show`"

0 commit comments

Comments
 (0)