Skip to main content
These examples are complete, ready-to-use scenarios. Each includes the full scenario.json, inventory.ini, and all three playbooks. Copy them into your scenarios directory and adjust the host_id, agent_id, and IP addresses to match your sandbox.

Disk Full

A scenario where a disk is filling up. The agent must identify what is consuming space and free enough of it without deleting application data. Compliance checks: Did the agent inspect disk usage? Did it identify the largest consumers before acting? Task validation: Is there enough free space after the agent finishes?

Nginx Broken Configuration

A broken nginx configuration prevents the web server from starting. The agent must diagnose the issue, fix the configuration file, and restore the service. Compliance checks: Did the agent run nginx -t before restarting? Did it actually edit the config file? Task validation: Is nginx running and serving traffic on port 80?

Kubernetes CrashLooping Pod

A deployment in the cluster has a pod stuck in CrashLoopBackOff due to a bad environment variable. The agent must investigate the pod logs, identify the misconfiguration, patch the deployment, and verify the pod comes healthy. Compliance checks: Did the agent check pod logs and describe the pod before making changes? Task validation: Is the pod running and ready after the agent’s fix?