with one click
ark-devspace
Run Ark from cloned source using devspace
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run Ark from cloned source using devspace
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Test the Ark Dashboard UI with Playwright
Install Ark on a Kuberenetes Cluster
Attach images to GitHub PRs and issues via a scratch repo
Create a Kind cluster in Docker-in-Docker environment
| name | Ark DevSpace |
| description | Run Ark from cloned source using devspace |
Run Ark from a cloned repository using devspace for development/PR testing.
If devspace fails, you MUST STOP and report the error. Do NOT try alternative approaches like ark-cli or npm install. DevSpace failures must be diagnosed and fixed.
/workspace/ark or /workspace/agents-at-scale-ark)kubectl cluster-infoNavigate to ark repo
cd /workspace/ark # or /workspace/agents-at-scale-ark
Deploy with devspace (non-interactive)
devspace deploy
This deploys all components and exits. Check the exit code - if non-zero, STOP and troubleshoot.
Verify deployment succeeded
kubectl get pods -n ark-system
kubectl get pods -n cert-manager
Wait for pods to be ready
kubectl wait --for=condition=Ready pods --all -n ark-system --timeout=300s
Check services
kubectl get svc -n ark-system
ls -la .devspace/logs/
cat .devspace/logs/default.log
"namespace not found" - Set namespace first
devspace use namespace ark-system
"image pull error" - Build images locally
devspace build
Cert-manager not ready - Wait for it
kubectl wait --for=condition=Available deployment --all -n cert-manager --timeout=120s
Cluster connectivity - Re-export kubeconfig
kind export kubeconfig --name ark-cluster --internal
.devspace/logs/ for detailed logskubectl get pods -Akubectl get events -A --sort-by='.lastTimestamp'devspace purge
kubectl delete ns ark-system --ignore-not-found