Custom login in front of kubernetes dashboard

1/7/2018

I want to have a custom login page in front of the kubernetes dashboard. Is there a way to have it. I tried calling kubernetes dashboard

app.get('/loginsuccess', function (req, res) {
  return res.redirect(localhost:8001/ui);
})

but it returns HTML page with upgrade your browser as text. Is there a better way to do it?

-- Rohit Vyavahare
kubernetes

0 Answers