Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFE] Add Mosh UDP service port and ingress #25

Open
3 tasks
usrbinkat opened this issue Oct 31, 2022 · 0 comments
Open
3 tasks

[RFE] Add Mosh UDP service port and ingress #25

usrbinkat opened this issue Oct 31, 2022 · 0 comments

Comments

@usrbinkat
Copy link
Member

Problem

Konductor image added Mosh mobile shell server for better remote shell experience. Currently this enhanced shell is not exposed as a service by the helm chart and there is no ingress definition for it.

Solution

Add mosh shell support

  • udp service
  • udp ingress
  • documentation

Example

Mosh connection command

mosh --ssh="ssh -p 31743" --server "LANG=en_US.UTF-8 mosh-server new -p 32767 -i 0.0.0.0" [email protected]

Example working service definition

apiVersion: v1
kind: Service
metadata:
  name: konductor
  labels:
    app: konductor
    app.kubernetes.io/instance: k
    app.kubernetes.io/managed-by: Helm
    app.kubernetes.io/name: konductor
    app.kubernetes.io/version: 0.0.3
    helm.sh/chart: konductor-0.0.3
spec:
  ports:
  - port: 32767
    protocol: UDP
    targetPort: 32767
    nodePort: 32767
  selector:
    app.kubernetes.io/instance: k
    app.kubernetes.io/name: konductor
  type: NodePort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant