Bird
0
0

How can you configure a Subscription to an OperatorHub operator to only receive updates from the 'alpha' channel and prevent automatic upgrades?

hard📝 Application Q9 of 15
Kubernetes - Operators and Custom Resources
How can you configure a Subscription to an OperatorHub operator to only receive updates from the 'alpha' channel and prevent automatic upgrades?
ASet spec.channel to 'alpha' and spec.installPlanApproval to 'Automatic'
BSet spec.channel to 'stable' and spec.installPlanApproval to 'Automatic'
CSet spec.channel to 'alpha' and spec.installPlanApproval to 'Manual'
DSet spec.channel to 'beta' and spec.installPlanApproval to 'Manual'
Step-by-Step Solution
Solution:
  1. Step 1: Specify the update channel

    Setting spec.channel to 'alpha' ensures updates come only from that channel.
  2. Step 2: Control upgrade approval

    Setting spec.installPlanApproval to 'Manual' prevents automatic upgrades, requiring manual approval.
  3. Final Answer:

    A -> Option C
  4. Quick Check:

    Channel 'alpha' + Manual approval blocks auto upgrades [OK]
Quick Trick: Use 'Manual' installPlanApproval to block auto upgrades [OK]
Common Mistakes:
  • Confusing channel names with upgrade control
  • Using 'Automatic' approval when manual is needed
  • Selecting wrong channel for updates

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes