I am running the below query to get two outputs across two columns :
Name
Memory
But the memory output is shown in Ki. I would like to convert the output of the node memory into MB when it is displayed.
How do i format my JSON path query to achieve this?
My current query :
kubectl get no -o=custom-columns=NAME:.metadata.name,MEMORY:.status.capacity.memory
2