Re: sftp service on cluster - how to do it

2019-11-21 Thread Aleksandar Lazic
Hi. Am 16.11.2019 um 22:36 schrieb Just Marvin: Hi,     I know its trivial to run an sftp server as a pod on an openshift cluster. The real trick would be to figure out how clients outside the cluster could access this service. How can one accomplish this? I would try this tool

Re: sftp service on cluster - how to do it

2019-11-18 Thread Mateus Caruccio
I guess one could use either Service.type=LoadBalancer (one ELB per service on port 22) or Service.type=NodePort with single ELB mapping ELB-PORT:NODE-PORT for each service. -- Mateus Caruccio / Master of Puppets GetupCloud.com We make the infrastructure invisible Gartner Cool Vendor 2017 Em

Re: sftp service on cluster - how to do it

2019-11-17 Thread Just Marvin
Tobias, I _will_ have access to load balancers if needed, but at the moment, I need to understand how it works. Assume that I do: what exactly does "proxy to the internal sftp service" mean? I assume "sftp service" would be the service that I set up, but which piece is the proxy? I don't see

Re: sftp service on cluster - how to do it

2019-11-17 Thread Tobias Florek
Hi! I assume you don't have easy access to load balancers, because that would be easiest. Just proxy to the internal sftp service. If you don't I have used Nodeport service in the past. You will lose the nice port 22 though. If you control the node's ssh daemon, you can also use ProxyJumps.