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 Kubernetes Pod and Container Concepts#Singleton_Pod can be created by posting a pod manifest to the API server with:
Removing an Individual Pod
Remove immediately:
kubectl delete pod pod-name --grace-period=0 --force