feat: add user-operation commands (ResetPassword/Reset2FA/Lock/Unlock) #265
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a new
d8 user-operationcommand group to deckhouse-cli to perform Dex local user management actions viaUserOperationcustom resources provided by the user-authn module.The commands create
UserOperationresources and optionally wait until the operation is completed, returning success or an error based on the resource status.Related main implementation PR in Deckhouse:
deckhouse/deckhouse#15561
Why do we need it, and what problem does it solve?
Cluster administrators often need to manage local Dex users (reset password, reset 2FA, lock/unlock accounts) without manually editing Dex storage or crafting Kubernetes YAML by hand.
With the main Deckhouse implementation, these actions are handled declaratively via
UserOperationresources.This PR provides a convenient CLI interface to create such resources and track their execution, making user management faster, safer, and less error-prone.
It simplifies operations such as:
The commands automate resource creation and status tracking, reducing manual intervention and enabling consistent automation.
Checklist
Changelog entries