cyclops icon indicating copy to clipboard operation
cyclops copied to clipboard

Add expose button to `service` deployed by the module

Open hanshal101 opened this issue 7 months ago • 1 comments

Feature Request

Add expose button to the services deployed by the module. It should expose the port and redirect to the page itself if err is not nil. Something like this:

const [port, err] = handleExpose();
if (err !== undefined) {
  notification(err)
} else {
  window.location.href = `http://localhost:${port}`;
}

hanshal101 avatar Jun 29 '24 20:06 hanshal101