Documentation

Getting Started (Test)

Provision your first isolated Kubernetes environment in minutes.

1. Create an Account

Go to the Sign Up page. We currently support email-based OTP authentication. Verification is instant.

2. Access Your Dashboard

Once logged in, you will see your tenant dashboard. This view shows your current resource usage (CPU, Memory, Pods) and your active node subscription.

3. Download Kubeconfig

Click the Download Kubeconfig button in the top right. This file contains certificates scoped specifically to your namespace.

export KUBECONFIG=~/Downloads/tenant-kubeconfig.yaml

4. Verify Access

Run a simple command to verify connectivity:

kubectl get pods

You should see No resources found in tenant-xxxx namespace.

5. Deploy an Application

You can now deploy standard Kubernetes manifests. Try running an Nginx pod:

kubectl run my-app --image=nginx

Next Steps

  • Expose your app using an Ingress (see Features).
  • Configure persistent storage.
  • Set up GitHub Actions for CI/CD.