Kubernetes Pod Operations

From NovaOrdis Knowledge Base
Revision as of 01:30, 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 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