Kubernetes Pod Operations

From NovaOrdis Knowledge Base
Revision as of 01:31, 7 September 2019 by Ovidiu (talk | contribs) (→‎Create Pods)
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