You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/manage-containers-azure-container-apps/8-module-assessment.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,8 @@ quiz:
23
23
explanation: "Tags like `latest` can move to a different image over time, which reduces traceability and can lead to deploying an unintended artifact."
24
24
- content: "Rebuild the image locally on each environment to ensure the image matches the environment."
25
25
isCorrect: false
26
-
explanation: "Rebuilding in each environment can produce different artifacts and does not improve traceability. A single, immutable artifact is easier to audit and promote."
27
-
- content: "A new revision starts but should not receive traffic while you investigate. Which action removes the revision from traffic without deleting it?"
26
+
explanation: "Rebuilding in each environment can produce different artifacts and doesn't improve traceability. A single, immutable artifact is easier to audit and promote."
27
+
- content: "A new revision starts but shouldn't receive traffic while you investigate. Which action removes the revision from traffic without deleting it?"
28
28
choices:
29
29
- content: "Run `az containerapp revision deactivate` for the revision."
30
30
isCorrect: true
@@ -42,8 +42,8 @@ quiz:
42
42
explanation: "Probe misconfiguration is a frequent cause of immediate readiness failure, especially during image updates that change ports or routes."
43
43
- content: "The container image is too small to include all required libraries."
44
44
isCorrect: false
45
-
explanation: "Image size does not directly determine library availability. Missing dependencies show up as application startup errors, not as a general image size issue."
46
-
- content: "The container app environment cannot route traffic to the public internet."
45
+
explanation: "Image size doesn't directly determine library availability. Missing dependencies show up as application startup errors, not as a general image size issue."
46
+
- content: "The container app environment can't route traffic to the public internet."
47
47
isCorrect: false
48
48
explanation: "Outbound routing issues can cause failures for dependency calls, but immediate readiness failures are more commonly due to probe settings or startup behavior."
49
49
- content: "You suspect only one revision has a runtime exception after an update. What is the most effective first step to confirm the problem?"
@@ -61,10 +61,10 @@ quiz:
61
61
choices:
62
62
- content: "Increase the per-replica CPU allocation, and then reassess scaling rules based on throughput."
63
63
isCorrect: true
64
-
explanation: "CPU throttling indicates the replica does not have enough CPU for its workload. Increasing CPU per replica is a direct fix, and you can then tune scaling for cost and throughput."
64
+
explanation: "CPU throttling indicates the replica doesn't have enough CPU for its workload. Increasing CPU per replica is a direct fix, and you can then tune scaling for cost and throughput."
65
65
- content: "Deactivate the newest revision to reduce load on the system."
66
66
isCorrect: false
67
-
explanation: "Deactivation changes which revision receives traffic but does not directly resolve CPU limits if the active revision still runs underprovisioned."
67
+
explanation: "Deactivation changes which revision receives traffic but doesn't directly resolve CPU limits if the active revision still runs underprovisioned."
68
68
- content: "Switch the image reference from digest to tag."
69
69
isCorrect: false
70
70
explanation: "Image identity affects traceability, not runtime CPU availability."
0 commit comments