Tail logs from cluster, exclude certain strings
stern --all-namespaces -l app=harbor --tail=1 --exclude=kube-probe --exclude=/api/health
ka get ing -o json | jq -r '.items[]| .metadata.name, .spec.rules[]'
ka get ing -o json | jq -r '.items[]| .spec.rules[] | select(.host == "myhost.domain.com")'
ka get po -o=jsonpath='{range .items[?(@.spec.priorityClassName=="system-cluster-critical")]}{.metadata.name}{"\n"}{end}'
ka get po -o=custom-columns=NAME:.metadata.name,NAMESPACE:.metadata.namespace,PRIORITY_CLASS:.spec.priorityClassName