Is it possible to mount a Kubernetes pod via SSHFS?
I have a running pod with interpreted scripts, and I would like to edit these scripts live within the pod, but in IntelliJ IDEA.
I know I can do kubernetes exec ... /bin/bash, but that's not the same as ssh and can't be leveraged by sshfs (as far as I know).
I know I can install OpenSSH and use ssh within the cluster or from the host, but this is an Azure AKS environment so that's not applicable.
Or is there any other FUSE filesystem which allows mounting a pod through what Kubernetes provides?