**kubectl run nginx-deployment --image=nginx:1.7.9 --replicas=2
**
deploy two copied Deployment nginx-deployment
using image :nginx:1.7.9
kubectl describe deployment
we find the ReplicaSet is created
kubectl describe replicaset
kubectl get pod
kubectl describe pod
the process:
create Deployment by kubectl
Deployment creates ReplicaSet
ReplicaSet creates Pod