← Docs|Installation

Installation

No installation required. Wozz runs directly using curl.

Prerequisites

kubectl installed

Version 1.19 or higher

kubectl version --client

Cluster access configured

Your kubeconfig should point to the cluster you want to audit

kubectl cluster-info
?

jq (optional but recommended)

For better resource analysis. Install with:

# macOS
brew install jq
# Ubuntu/Debian
sudo apt-get install jq

Running Your First Audit

Simply run this one-liner:

curl -sL wozz.io/audit.sh | bash

The script will:

  1. Check prerequisites (kubectl, cluster access)
  2. Collect resource data from your cluster
  3. Analyze for waste patterns
  4. Display results in your terminal
  5. Save detailed report to wozz-audit.json

Troubleshooting

Error: kubectl not found

Install kubectl: https://kubernetes.io/docs/tasks/tools/

Error: Cannot connect to cluster

Verify your kubeconfig:

kubectl get nodes

Warning: jq not found

The script will still work but with basic counting instead of detailed analysis. Install jq for best results.