CreateNodeProxyConfig creates a proxy configuration for a node VNC shell connection.
(client *api.Client, nodeName string)
| 479 | |
| 480 | // CreateNodeProxyConfig creates a proxy configuration for a node VNC shell connection. |
| 481 | func CreateNodeProxyConfig(client *api.Client, nodeName string) (*ProxyConfig, error) { |
| 482 | return CreateNodeProxyConfigWithLogger(client, nodeName, nil) |
| 483 | } |
| 484 | |
| 485 | // CreateNodeProxyConfigWithLogger creates a proxy configuration for a node VNC shell connection with shared logger. |
| 486 | func CreateNodeProxyConfigWithLogger(client *api.Client, nodeName string, sharedLogger *logger.Logger) (*ProxyConfig, error) { |
nothing calls this directly
no test coverage detected