Web UI
Dploy includes an embedded web interface for managing environments without using the API directly.
Accessing the UI
Section titled “Accessing the UI”Open your browser at your Dploy host:
https://dploy.your-domain.com/Or for local development: http://localhost:8080/.
Authentication
Section titled “Authentication”- Click Login with SSO.
- You’re redirected to your OIDC provider (Authentik, Keycloak, …) to sign in.
- After login you’re redirected back; the JWT is stored in
localStorageand sent as a Bearer token on API calls.
Click Logout to clear your session.
Dashboard
Section titled “Dashboard”Active environments
Section titled “Active environments”Your running environments, each showing:
- Name — the template it was launched from
- Status — derived from the instance phase / Helm health:
- 🟢
Healthy— ready to use - 🟡
Progressing— still deploying - 🟠
Degraded— something is wrong - ⚪
pending— just created
- 🟢
- URL — direct link to the environment
- Time left — TTL countdown
Actions: Open, Extend (add time), Delete.
Available templates
Section titled “Available templates”A grid of catalog entries (visible, enabled DployTemplates). Click Launch to create — or,
for pool templates, instantly claim — an environment.
Quota counter
Section titled “Quota counter”The header shows your usage, e.g. 2 / 5 environments. It turns orange as you approach the limit.
Direct URLs
Section titled “Direct URLs”You can launch a specific template by URL:
https://dploy.your-domain.com/run/webtermThis checks authentication, creates the environment if needed, shows progress, and redirects to the environment when it’s ready. Handy for bookmarks, sharing links, or embedding in an LMS.
Status polling
Section titled “Status polling”While launching, the UI polls /api/run/:env/status every couple of seconds and redirects to the
environment URL once the status becomes Healthy. A Degraded status or timeout shows an error.
Troubleshooting
Section titled “Troubleshooting”“Authentication failed — please login” — your token expired; log in again.
Environment stuck in pending/Progressing — inspect the underlying Flux release:
kubectl get helmrelease -n dploy-systemflux get helmrelease -n dploy-systemkubectl describe dployinstance <name> -n dploy-system“Maximum N environments allowed” — you’ve hit your quota; delete an environment or ask an admin to raise the limit.
“No pooled instance available, try again shortly” — a pool template’s warm instances are all claimed; the operator is refilling the pool — retry in a moment.