Kubernetes Pod Operations
Jump to navigation
Jump to search
Internal
Get Information about Pods
kubectl get pods|po
kubectl describe pod <pod-name>
kubectl log <pod-name>
Create Pods
A singleton pod can be created by posting a pod manifest to the API server with:
kubectl apply -f <pod-manifest-file-name>.yaml
Removing an Individual Pod
Remove immediately:
kubectl delete pod pod-name --grace-period=0 --force