Skip to main content
After completing the installation and configuration steps, here’s how to confirm everything is working.

Check the Setup Interface

The setup interface shows a progress tracker with five phases. When all phases show a green checkmark, installation is complete and the application is ready for deployment.

Verify from Your Infrastructure

Verify the Controller Pod

kubectl get pods -n <namespace>
You should see the controller pod in a Running state with 1/1 containers ready.

Check Controller Logs

kubectl logs -n <namespace> <controller-pod-name>
The logs should show successful startup and a connection established to our systems.

Verify RBAC

kubectl get clusterrolebindings | grep <namespace>
You should see the cluster role bindings created during installation.

Verify Secrets (If Configured)

kubectl get secrets -n <namespace>
Any secrets you created during configuration should appear here.

Common Issues

SymptomLikely CauseFix
Pod stuck in PendingInsufficient cluster resourcesCheck node capacity: kubectl describe nodes
Pod in CrashLoopBackOffConfiguration errorCheck logs: kubectl logs -n <namespace> <pod>
Pod in ImagePullBackOffRegistry access issueVerify your cluster can pull images from the internet
Setup interface shows “Waiting for controller”Controller hasn’t connected yetWait 2-5 minutes; check outbound network access
For more detailed troubleshooting, see Troubleshooting.

Next Steps