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

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
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 expose deployment http --external-ip="172.17.0.29" --port=8000 --target-port=80
10service/http exposed
11 
12$ curl http://172.17.0.29:8000
13<h1>This request was processed by host: http-8d74f97b5-zqqdv</h1>

 
  


  
bl  br