|
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 |
02 | kubectl 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. |
03 | deployment.apps/http created |
05 | $ kubectl get deployments |
06 | NAME READY UP-TO-DATE AVAILABLE AGE |
10 | NAME READY STATUS RESTARTS AGE |
11 | http-8d74f97b5-zqqdv 1 / 1 Running 0 17s |
|
|