Bird
0
0

Given the commands executed in order:

medium📝 Command Output Q4 of 15
Kubernetes - Helm Package Manager
Given the commands executed in order:
helm install myapp ./chart-v1
helm upgrade myapp ./chart-v2
helm rollback myapp 1
What will be the current version of the release myapp?
AVersion 1 (chart-v1)
BVersion 2 (chart-v2)
CVersion 3 (new version)
DNo release exists after rollback
Step-by-Step Solution
Solution:
  1. Step 1: Analyze the commands sequence

    Install sets version 1, upgrade moves to version 2, rollback to revision 1 reverts to version 1.
  2. Step 2: Understand rollback effect

    Rollback restores the release to the specified previous version.
  3. Final Answer:

    Version 1 (chart-v1) -> Option A
  4. Quick Check:

    Rollback to revision 1 = version 1 active [OK]
Quick Trick: Rollback sets release to specified previous revision [OK]
Common Mistakes:
  • Assuming rollback deletes release
  • Thinking rollback upgrades to new version
  • Confusing revision numbers

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes