Hi all, one help. ssh server is running inside a container which is deployed in . . .

Sajitha:
Hi all, one help. ssh server is running inside a container which is deployed in K8s cluster. How to create ingress to access the container from outside of k8s cluster.

Ly Quoc Bao:
Hello @Sajitha,
You can install nginx ingress with this document: https://docs.nginx.com/nginx-ingress-controller/installation/installation-with-helm/
Then you can refer to this document for creating ingress kind: https://kubernetes.io/docs/concepts/services-networking/ingress/

Sajitha:
Ingress controller is already setup in the customer k8s cluster.

Ly Quoc Bao:
So you can refer to the second link above

Sajitha:
sure @Ly Quoc Bao

Sajitha:
@Ly Quoc Bao i can see ingress examples only for web applications. Cant find any reference to connecting to an container running some other services [not web app] through Ingress .

Ly Quoc Bao:
Hey @Sajitha You can give it a try with this document: https://www.percona.com/blog/expose-databases-on-kubernetes-with-ingress

Sajitha:
thank you @Ly Quoc Bao will check and try

Sajitha:
Gone through the details and understood that in generall ingress controllers are configured to server http/https request. To access the tcp ports, particular port has to be configured in Ingress controller level as well.

Ly Quoc Bao:
Yeah, sound great, keep it up.