#!/bin/bash

if [ -z "$1" ]; then
    kubectl top pods
else
  set -x #echo on
  kubectl top pods | grep $1
fi
