-
Story
-
Resolution: Unresolved
-
Undefined
-
None
-
None
-
Product / Portfolio Work
-
False
-
-
False
-
3
-
None
-
None
-
OCP Console - Sprint 282
Update Node Overview:
Add Groups information to the node details section.
Allow the user to edit groups from this view:
- Customers can easily add/edit groups on their nodes which lets admins know which workload they are supporting.
- This is critical when multiple admins are managing an infrastructure.
Update the Inventory card to show:
- Pods
- Images
- CPU - (Sockets / Cores / Threads)
- Memory
- Storage
- Network
- VMs (CNV)
Data Resolutions (from Prometheus)
CPU - (Sockets / Cores /Threads)
- Sockets: instance:node_cpu:rate:sum {instance='<%= node %>'}
- Cores: machine_cpu_physical_cores{node='<%= nodeName %>'}
- Threads: instance:node_num_cpu:sum{instance='<%= node %>'}
Memory - Physical, Allocatable
- Physical: node_memory_MemTotal_bytes {instance='<%= node %>'}
- Allocatable: kube_node_status_allocatable{node='<%= nodeName %>', resource='memory'}
Storage - Disks, raw storage size
- Disks: count(node_disk_info{node='<%= nodeName %>'}) or count(node_disk_io_now{instance='<%= node %>'})
- Storage size: existing query NodeQueries.FILESYSTEM_TOTAL
Network - NICs count
- NICs count:count(node_network_info{instance='<%= node %>'}) or count(node_network_up{instance='<%= node %>'})
VMs (CNV) - Running VMs count
- This column will need to be added by the kubevirt-plugin
`