Hi@akhtar,
After deploying the application, you need to expose it to the internet so that users can access it. You can expose your application by creating a Service, a Kubernetes resource that exposes your application to external traffic. To expose your application, run the following kubectl expose command.
$ kubectl expose deployment hello-server --type LoadBalancer --port 80 --target-port 8080