docs: clarify security implications of space quotas#1118
docs: clarify security implications of space quotas#1118pigeio wants to merge 1 commit intoetcd-io:mainfrom
Conversation
Signed-off-by: Anand raj <rajanand3307@gmail.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pigeio The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @pigeio. Thanks for your PR. I'm waiting for a etcd-io member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
What is this change?
This PR adds a specific "Security Note" to the Space Quota documentation in the Maintenance Guide. It clarifies that quotas are not just for resource management, but serve as a defense mechanism against Availability-based Denial of Service (DoS).
Why is this change necessary?
While investigating the write path in
server/etcdserver/api/v3rpc/quota.go, I observed that thecheck()function runs prior to the main Put logic.Many operators view quotas purely as a storage administrative task. Highlighting that this protects the cluster from entering a "read-only" panic state (due to disk exhaustion) emphasizes the security value of this configuration.
How was this tested?
etcd/server/etcdserver/api/v3rpc/quota.go.