Kubernetes Pods
Monitor pods running in your Kubernetes clusters.
Adding
Automatic Detection: Works the same way as Docker containers.
Process
- Click the three-dots menu
- Select "Add Services"
- Choose your Kubernetes provider
- Select "Kubernetes Pod" type
- Choose from detected pods
Control
Kubectl Commands: Controlled using kubectl commands.
Basic Operations
# Get pod status
kubectl get pods -n namespace
# Delete pod (will restart if part of deployment)
kubectl delete pod pod-name -n namespace