|
How to expose a Kubernetes Deployment
Author: Venkata Sudhakar
The below example shows how to expose Kubernetes Deployment. The expose command exposes the container port (target-port) 80 on the host 8000 binding to the external-ip of the host.
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 |
09 | $ kubectl expose deployment http --external-ip= "172.17.0.29" --port= 8000 --target-port= 80 |
13 | <h1>This request was processed by host: http-8d74f97b5-zqqdv</h1> |
|
|