This release introduces new command-line options to filter which columns are displayed in nodes and pods tables.
Users can now customize the view by specifying columns with --node-columns
and --pod-columns
flags.
Column Filtering
You can now customize which columns are displayed in the nodes and pods tables. This is useful when you want to focus on specific metrics or when working with limited screen space.
To show only specific node columns:
ktop --node-columns NAME,CPU,MEM
To show only specific pod columns:
ktop --pod-columns NAMESPACE,POD,CPU,MEMORY
You can combine both filters:
ktop --node-columns NAME,CPU,MEM --pod-columns NAMESPACE,POD,STATUS
Available node columns:
NAME
STATUS
AGE
VERSION
INT/EXT IPs
OS/ARC
PODS/IMGs
DISK
CPU
MEM
Available pod columns:
NAMESPACE
POD
READY
STATUS
RESTARTS
AGE
VOLS
IP
NODE
CPU
MEMORY
These enhancements improve the usability and customization of ktop, allowing users to tailor the displayed information to their needs. The updated automation scripts also ensure a smoother release workflow.
What's Changed
- Bump golang.org/x/net from 0.23.0 to 0.36.0 by @dependabot in #53
- Bump golang.org/x/net from 0.36.0 to 0.38.0 by @dependabot in #54
- Add column filtering options for nodes and pods in ktop by @rogosprojects in #51
- Update CI/release scripts by @vladimirvivien in #55
New Contributors
- @rogosprojects made their first contribution in #51
Full Changelog: v0.3.7...v0.4.0