GetNodeVNCStatus checks if VNC shell is available for a node.
(nodeName string)
| 194 | |
| 195 | // GetNodeVNCStatus checks if VNC shell is available for a node. |
| 196 | func (s *Service) GetNodeVNCStatus(nodeName string) (bool, string) { |
| 197 | return s.GetNodeVNCStatusWithClient(s.client, nodeName) |
| 198 | } |
| 199 | |
| 200 | // GetNodeVNCStatusWithClient checks if VNC shell is available for a node using a specific client. |
| 201 | func (s *Service) GetNodeVNCStatusWithClient(client *api.Client, nodeName string) (bool, string) { |
nothing calls this directly
no test coverage detected