diff --git a/keps/sig-cli/5105-kubectl-adm-top-pvc/README.md b/keps/sig-cli/5105-kubectl-adm-top-pvc/README.md new file mode 100644 index 00000000000..151d4be9d35 --- /dev/null +++ b/keps/sig-cli/5105-kubectl-adm-top-pvc/README.md @@ -0,0 +1,877 @@ + +# KEP-5105: kubectl top persistentvolumeclaim + + + + + + +- [Release Signoff Checklist](#release-signoff-checklist) +- [Summary](#summary) +- [Motivation](#motivation) + - [Goals](#goals) + - [Non-Goals](#non-goals) +- [Proposal](#proposal) + - [User Stories (Optional)](#user-stories-optional) + - [Story 1](#story-1) + - [Story 2](#story-2) + - [Notes/Constraints/Caveats (Optional)](#notesconstraintscaveats-optional) + - [Risks and Mitigations](#risks-and-mitigations) +- [Design Details](#design-details) + - [Test Plan](#test-plan) + - [Prerequisite testing updates](#prerequisite-testing-updates) + - [Unit tests](#unit-tests) + - [Integration tests](#integration-tests) + - [e2e tests](#e2e-tests) + - [Graduation Criteria](#graduation-criteria) + - [Alpha](#alpha) + - [Beta](#beta) + - [GA](#ga) + - [Upgrade / Downgrade Strategy](#upgrade--downgrade-strategy) + - [Version Skew Strategy](#version-skew-strategy) +- [Production Readiness Review Questionnaire](#production-readiness-review-questionnaire) + - [Feature Enablement and Rollback](#feature-enablement-and-rollback) + - [Rollout, Upgrade and Rollback Planning](#rollout-upgrade-and-rollback-planning) + - [Monitoring Requirements](#monitoring-requirements) + - [Dependencies](#dependencies) + - [Scalability](#scalability) + - [Troubleshooting](#troubleshooting) +- [Implementation History](#implementation-history) +- [Drawbacks](#drawbacks) +- [Alternatives](#alternatives) + + +## Release Signoff Checklist + + + +Items marked with (R) are required *prior to targeting to a milestone / release*. + +- [ ] (R) Enhancement issue in release milestone, which links to KEP dir in [kubernetes/enhancements] (not the initial KEP PR) +- [ ] (R) KEP approvers have approved the KEP status as `implementable` +- [ ] (R) Design details are appropriately documented +- [ ] (R) Test plan is in place, giving consideration to SIG Architecture and SIG Testing input (including test refactors) + - [ ] e2e Tests for all Beta API Operations (endpoints) + - [ ] (R) Ensure GA e2e tests meet requirements for [Conformance Tests](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md) + - [ ] (R) Minimum Two Week Window for GA e2e tests to prove flake free +- [ ] (R) Graduation criteria is in place + - [ ] (R) [all GA Endpoints](https://github.com/kubernetes/community/pull/1806) must be hit by [Conformance Tests](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md) +- [ ] (R) Production readiness review completed +- [ ] (R) Production readiness review approved +- [ ] "Implementation History" section is up-to-date for milestone +- [ ] User-facing documentation has been created in [kubernetes/website], for publication to [kubernetes.io] +- [ ] Supporting documentation—e.g., additional design documents, links to mailing list discussions/SIG meetings, relevant PRs/issues, release notes + + + +[kubernetes.io]: https://kubernetes.io/ +[kubernetes/enhancements]: https://git.k8s.io/enhancements +[kubernetes/kubernetes]: https://git.k8s.io/kubernetes +[kubernetes/website]: https://git.k8s.io/website + +## Summary + + + +Provide a simple command to display a PersistentVolumeClaim capacity usage. + +## Motivation + + + +There already exist options like `kubectl top pod` that can display usage +statistic of the server resources. Adding an option to display also usage of +the PersistentVolumeClaims seems like a natural extension which provides +important information about the persistent storage available to the workloads. + +### Goals + + + +1. Provide a simple CLI option to display filesystem usage of + PersistentVolumeClaims. +2. Display only the percentual usage for a given PersistentVolumeClaim or all + PersistentVolumeClaims in a given namespace. + +### Non-Goals + + + +## Proposal + + + +Implement `kubectl top persistentvolumeclaims` (and abbreviated `kubectl top pvc`) +command that would show usage statistic of the bound PersistentVolumeClaim +like this: + +```text +oc adm top pvc -n reproducer-pvc +NAMESPACE NAME USAGE(%) +reproducer-pvc pvc-reproducer-pvc 98.28 +reproducer-pvc pvc-test-pvc 14.56 +``` + +### User Stories (Optional) + + + +#### Story 1 + +As an OCP project user, I want to see a list of all PVC's in my namespace and +their space consumption so I know if my application has enough storage space. + +#### Story 2 + +As an OCP cluster admin, I want to see a list of all PVC's on the cluster and +their space consumption so I know if any components are running out of storage +space. + +### Notes/Constraints/Caveats (Optional) + + + +The feature depends on the metric endpoints to be accessible by the user. That +means the metrics server should be configured and running and the user of the +`kubectl` command has neceessary permissions to access the metrics. + +### Risks and Mitigations + + + +## Design Details + + + +There are the `kubelet_volume_stats_used_bytes` and +`kubelet_volume_stats_capacity_bytes` metrics which can be used to compute +the volume used space percentage. + +In case metrics APIs are unavailable the command would fail: + +``` +$ kubectl top persistentvolumeclaims +error: Metrics API not available +``` + +The users also need to have necessary permissions to access the metrics. The +exact setting might differ by the cluster policies configuration. + +### Test Plan + + + +[X] I/we understand the owners of the involved components may require updates to +existing tests to make this code solid enough prior to committing the changes necessary +to implement this enhancement. + +##### Prerequisite testing updates + + + +##### Unit tests + + + + + +- ``: `` - `` + +##### Integration tests + + + + + +- : + +##### e2e tests + + + +- : + +### Graduation Criteria + + +#### Alpha + +- Feature implemented and marked as experimental + +#### Beta + +- Gather feedback from users +- Consider additional improvements (additional data to display, formatting options, etc.) + +#### GA + +- Gather additional feedback on the changes +- Stabilize the output and formatting + + + +### Upgrade / Downgrade Strategy + +N/A + +### Version Skew Strategy + + + +The `kubectl` command must skew +/- one like normal commands. + +## Production Readiness Review Questionnaire + + + +### Feature Enablement and Rollback + + + +###### How can this feature be enabled / disabled in a live cluster? + + + +- [ ] Feature gate (also fill in values in `kep.yaml`) + - Feature gate name: + - Components depending on the feature gate: +- [X] Other + - Describe the mechanism: A new `kubectl top persistentvolumeclaims` + and `kubectl top pvc` subcommands are added and the + description would mark them as experimental in the initial release. + - Will enabling / disabling the feature require downtime of the control + plane? No, this is completely a client-side feature. + - Will enabling / disabling the feature require downtime or reprovisioning + of a node? No, this is completely a client-side feature. + +###### Does enabling the feature change any default behavior? + +No. + + +###### Can the feature be disabled once it has been enabled (i.e. can we roll back the enablement)? + +Yes, rolling back to previous version of `kubectl` would remove the feature. + + +###### What happens if we reenable the feature if it was previously rolled back? + +The new subcommand would come back and would be usable again. + +###### Are there any tests for feature enablement/disablement? + +No, there's no way to disable the feature in a single `kubectl` version. + + + +### Rollout, Upgrade and Rollback Planning + + + +###### How can a rollout or rollback fail? Can it impact already running workloads? + +The feature is completely encapsulated in the `kubectl` binary. Even if it works +incorrectly, it changes nothing on the running cluster and cannot affect workloads. + + + +###### What specific metrics should inform a rollback? + +N/A + + +###### Were upgrade and rollback tested? Was the upgrade->downgrade->upgrade path tested? + +This feature has no impact on the cluster upgrades or downgrades. The upgrade or +downgrade of the `kubectl` binary itself only affects availability of the feature. + + +###### Is the rollout accompanied by any deprecations and/or removals of features, APIs, fields of API types, flags, etc.? + + +No. + +### Monitoring Requirements + + + +###### How can an operator determine if the feature is in use by workloads? + +N/A + + +###### How can someone using this feature know that it is working for their instance? + +N/A + + +- [ ] Events + - Event Reason: +- [ ] API .status + - Condition name: + - Other field: +- [ ] Other (treat as last resort) + - Details: + +###### What are the reasonable SLOs (Service Level Objectives) for the enhancement? + + + +###### What are the SLIs (Service Level Indicators) an operator can use to determine the health of the service? + + + +- [ ] Metrics + - Metric name: + - [Optional] Aggregation method: + - Components exposing the metric: +- [ ] Other (treat as last resort) + - Details: + +###### Are there any missing metrics that would be useful to have to improve observability of this feature? + + + +### Dependencies + + + +###### Does this feature depend on any specific services running in the cluster? + + + + - [Metrics API server] + - The command queries the `kubelet_volume_stats_used_bytes` and + `kubelet_volume_stats_capacity_bytes` metrics to compute the volume usage + percentage + - If the metrics server is not running or the metrics API is unavailable, + an error message is printed + +### Scalability + + + +###### Will enabling / using this feature result in any new API calls? + + +No. Using the new command would only result in a new metric endpoint query. Given +it is user initiated, the load increase should be negligible. + +###### Will enabling / using this feature result in introducing new API types? + + +No. + +###### Will enabling / using this feature result in any new calls to the cloud provider? + + +No. + +###### Will enabling / using this feature result in increasing size or count of the existing API objects? + + +No. + +###### Will enabling / using this feature result in increasing time taken by any operations covered by existing SLIs/SLOs? + + +No. + +###### Will enabling / using this feature result in non-negligible increase of resource usage (CPU, RAM, disk, IO, ...) in any components? + + +No. + +###### Can enabling / using this feature result in resource exhaustion of some node resources (PIDs, sockets, inodes, etc.)? + + +No. + +### Troubleshooting + + + +###### How does this feature react if the API server and/or etcd is unavailable? + +`kubectl` is not resilient to API server unavailability. + +###### What are other known failure modes? + +N/A + + +###### What steps should be taken if SLOs are not being met to determine the problem? + +N/A + +## Implementation History + + +2025-01-30: Initial KEP draft + +## Drawbacks + + +Since the volume usage values are read from the metrics endpoints, the feature +is only useful to the users who have the matrics server configured and running +in their cluster. + +## Alternatives + +It is possible to obtain the provided information already, e.g. by running +the `df` command on a mounted volume from a pod or querying PV, PVC and node +stats summary manually. This is however quite complicated and inconvenient. diff --git a/keps/sig-cli/5105-kubectl-adm-top-pvc/kep.yaml b/keps/sig-cli/5105-kubectl-adm-top-pvc/kep.yaml new file mode 100644 index 00000000000..5aa146fe1c9 --- /dev/null +++ b/keps/sig-cli/5105-kubectl-adm-top-pvc/kep.yaml @@ -0,0 +1,40 @@ +title: kubectl top persistentvolumeclaim +kep-number: 5105 +authors: + - "@tsmetana" +owning-sig: sig-cli +participating-sigs: + - sig-storage +status: provisional|implementable|implemented|deferred|rejected|withdrawn|replaced +creation-date: 2025-01-30 +reviewers: + - TBD +approvers: + - TBD + +see-also: +replaces: + +# The target maturity stage in the current dev cycle for this KEP. +# If the purpose of this KEP is to deprecate a user-visible feature +# and a Deprecated feature gates are added, they should be deprecated|disabled|removed. +stage: alpha + +# The most recent milestone for which work toward delivery of this KEP has been +# done. This can be the current (upcoming) milestone, if it is being actively +# worked on. +latest-milestone: "v1.33" + +# The milestone at which this feature was, or is targeted to be, at each stage. +milestone: + alpha: "v1.33" + beta: + stable: + +# The following PRR answers are required at alpha release +# List the feature gate name and the components for which it must be enabled +feature-gates: # N/A +disable-supported: false + +# The following PRR answers are required at beta release +metrics: # N/A