Executor is an interface for transporting shell-style streams.
type Executor interface { // Deprecated: use StreamWithContext instead to avoid possible resource leaks. // See https://github.com/kubernetes/kubernetes/pull/103177 for details. Stream(options StreamOptions) error // StreamWithContext initiates the transport of the standard shell streams. It will // transport any non-nil stream to a remote system, and return an error if a problem // occurs. If tty is set, the stderr stream is not used (raw TTY manages stdout and // stderr over the stdout stream). // The context controls the entire lifetime of stream execution. StreamWithContext(ctx context.Context, options StreamOptions) error }
func NewFallbackExecutor(primary, secondary Executor, shouldFallback func(error) bool) (Executor, error)
NewFallbackExecutor creates an Executor that first attempts to use the WebSocketExecutor, falling back to the legacy SPDYExecutor if the initial websocket "StreamWithContext" call fails. func NewFallbackExecutor(config *restclient.Config, method string, url *url.URL) (Executor, error) {
func NewSPDYExecutor(config *restclient.Config, method string, url *url.URL) (Executor, error)
NewSPDYExecutor connects to the provided server and upgrades the connection to multiplexed bidirectional streams.
func NewSPDYExecutorForProtocols(transport http.RoundTripper, upgrader spdy.Upgrader, method string, url *url.URL, protocols ...string) (Executor, error)
NewSPDYExecutorForProtocols connects to the provided server and upgrades the connection to multiplexed bidirectional streams using only the provided protocols. Exposed for testing, most callers should use NewSPDYExecutor or NewSPDYExecutorForTransports.
func NewSPDYExecutorForTransports(transport http.RoundTripper, upgrader spdy.Upgrader, method string, url *url.URL) (Executor, error)
NewSPDYExecutorForTransports connects to the provided server using the given transport, upgrades the response using the given upgrader to multiplexed bidirectional streams.
func NewSPDYExecutorRejectRedirects(transport http.RoundTripper, upgrader spdy.Upgrader, method string, url *url.URL) (Executor, error)
NewSPDYExecutorRejectRedirects returns an Executor that will upgrade the future connection to a SPDY bi-directional streaming connection when calling "Stream" (deprecated) or "StreamWithContext" (preferred). Additionally, if the upstream server returns a redirect during the attempted upgrade in these "Stream" calls, an error is returned.
func NewWebSocketExecutor(config *restclient.Config, method, url string) (Executor, error)
func NewWebSocketExecutorForProtocols(config *restclient.Config, method, url string, protocols ...string) (Executor, error)
NewWebSocketExecutorForProtocols allows to execute commands via a WebSocket connection.
type FallbackExecutor struct {
// contains filtered or unexported fields
}
func (f *FallbackExecutor) Stream(options StreamOptions) error
Stream is deprecated. Please use "StreamWithContext".
func (f *FallbackExecutor) StreamWithContext(ctx context.Context, options StreamOptions) error
StreamWithContext initially attempts to call "StreamWithContext" using the primary executor, falling back to calling the secondary executor if the initial primary call to upgrade to a websocket connection fails.
StreamOptions holds information pertaining to the current streaming session: input/output streams, if the client is requesting a TTY, and a terminal size queue to support terminal resizing.
type StreamOptions struct { Stdin io.Reader Stdout io.Writer Stderr io.Writer Tty bool TerminalSizeQueue TerminalSizeQueue }
TerminalSize represents the width and height of a terminal.
type TerminalSize struct { Width uint16 Height uint16 }
TerminalSizeQueue is capable of returning terminal resize events as they occur.
type TerminalSizeQueue interface { // Next returns the new terminal size after the terminal has been resized. It returns nil when // monitoring has been stopped. Next() *TerminalSize }