# get all deployments in the default namespace only
kubectl get deploy
# get all services in the default namespace only
kubectl get svc
# get all services in all namespaces
kubectl get svc -A
# get all nodes in the current cluster
kubectl get node
# get all ingress services in the default namespace
kubectl get ingress