tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to create a Kubernetes Deployment

How to create a Kubernetes Deployment

Author: Venkata Sudhakar

The below example shows how to create a Kubernetes Deployment from commandline.

01$ kubectl run http --image=bethecoder/docker-http-server:latest --replicas=1
02kubectl run --generator=deployment/apps.v1 is DEPRECATED and will be removed in a future version. Use kubectl run --generator=run-pod/v1 or kubectl create instead.
03deployment.apps/http created
04$
05$ kubectl get deployments
06NAME   READY   UP-TO-DATE   AVAILABLE   AGE
07http   1/1     1            1           9s
08$
09$ kubectl get pods
10NAME                   READY   STATUS    RESTARTS   AGE
11http-8d74f97b5-zqqdv   1/1     Running   0          17s

 
  


  
bl  br