Categorygithub.com/containerssh/kuberun
modulepackage
0.9.3
Repository: https://github.com/containerssh/kuberun.git
Documentation: pkg.go.dev

# README

ContainerSSH - Launch Containers on Demand

ContainerSSH Kubernetes Library

Go Report Card LGTM Alerts

This library runs Kubernetes pods in integration with the sshserver library.

Note: This is a developer documentation.
The user documentation for ContainerSSH is located at containerssh.github.io.

How this library works

When a client successfully performs an SSH handshake this library creates a Pod in the specified Kubernetes cluster. This pod will run the command specified in IdleCommand. When the user opens a session channel this library runs an exec command against this container, allowing multiple parallel session channels to work on the same Pod.

Using this library

As this library is designed to be used exclusively with the sshserver library the API to use it is also very closely aligned. This backend doesn't implement a full SSH backend, instead it implements a network connection handler. This handler can be instantiated using the kuberun.New() method:

handler, err := kuberun.New(
    config,
    connectionID,
    client,
    logger,
)

The parameters are as follows:

  • config is a struct of the kuberun.Config type.
  • connectionID is an opaque ID for the connection.
  • client is the net.TCPAddr of the client that connected.
  • logger is the logger from the log library

Once the handler is created it will wait for a successful handshake:

sshConnection, err := handler.OnHandshakeSuccess("username-here")

This will launch a pod. Conversely, the handler.OnDisconnect() will destroy the pod.

The sshConnection can be used to create session channels and launch programs as described in the sshserver library.

Note: This library does not perform authentication. Instead, it will always sshserver.AuthResponseUnavailable.

# Functions

CreateConnectionConfig creates a Kubernetes REST client config from the kuberun config structure.
No description provided by the author
SetConfigFromKubeConfig attempts to load the kubeconfig from the current users home directory and use it as a source for credentials.

# Structs

Config is the base configuration structure for kuberun.
ConnectionConfig configures the connection to the Kubernetes cluster.
PodConfig describes the pod to launch.

# Interfaces

No description provided by the author