Dilly:
Hi everyone what is the command to check what are the pods running in a particular node example node name: development?
Gonzalo Acosta:
probe with this kubectl describe node <node_name> and show the list of pod running in this node, other way is execute kubectl get pods -o wide and apply at this command any filter with - jsonpath or grep
Gonzalo Acosta:
k get pods -o wide --field-selector=spec.nodeName=kworker2
Dilly:
thanks buddy