ConnectToNodeEmbedded opens an embedded VNC shell connection to a node using the built-in noVNC client This method supports multiple concurrent sessions - each node gets its own session.
(nodeName string)
| 257 | // ConnectToNodeEmbedded opens an embedded VNC shell connection to a node using the built-in noVNC client |
| 258 | // This method supports multiple concurrent sessions - each node gets its own session. |
| 259 | func (s *Service) ConnectToNodeEmbedded(nodeName string) (string, error) { |
| 260 | return s.ConnectToNodeEmbeddedWithClient(s.client, nodeName) |
| 261 | } |
| 262 | |
| 263 | // ConnectToNodeEmbeddedWithClient opens an embedded VNC shell connection to a node using the built-in noVNC client and specific client. |
| 264 | func (s *Service) ConnectToNodeEmbeddedWithClient(client *api.Client, nodeName string) (string, error) { |
nothing calls this directly
no test coverage detected