Re: Running sshd in a Docker Container on Openshift

2017-07-10 Thread Graham Dumpleton
> On 10 Jul 2017, at 11:55 PM, Itamar Turner-Trauring > wrote: > > It is possible to run sshd on OpenShift, if other options don't work - we do > it as part of the Telepresence remote debugging tool we built for OpenShift > and Kubernetes (https://telepresence.io

Re: Running sshd in a Docker Container on Openshift

2017-07-10 Thread Aleksandar Kostadinov
Hi, you can use http for file transfer as well and communicate server password through a secret in the project. It is indeed possible to run an SSH server inside OpenShift. Just a little tricky. I've a blog about it [1]. [1]

Re: Running sshd in a Docker Container on Openshift

2017-07-10 Thread Itamar Turner-Trauring
It is possible to run sshd on OpenShift, if other options don't work - we do it as part of the Telepresence remote debugging tool we built for OpenShift and Kubernetes (https://telepresence.io). Here's a shortened (and untested) Dockerfile: - FROM alpine:3.5 RUN mkdir -p /usr/src/app

Re: Running sshd in a Docker Container on Openshift

2017-07-10 Thread Isuru Haththotuwa
Thank you all for the responses. I'll check these options. On Mon, Jul 10, 2017 at 4:13 AM, Graham Dumpleton wrote: > Anther ad-hoc way of moving data between pods is possible if you have > 'netcat' tools installed in image for each application. > > Look at the example in: