kubectl run nginx --image=nginx
kubectl get pods
kubectl run nginx2 --image=nginx --dry-run=client
kubectl get pods
kubectl run nginx2 --image=nginx -o yaml
kubectl run nginx4 --image=nginx --dry-run=client -o yaml
kubectl run nginx4 --image=nginx --dry-run=client -o yaml > pod-custom.yaml
kubectl delete pod --all