CLI Referencevalqore checkup
valqore checkup
Full environment health check in one command.
valqore checkup
Full environment health check in one command. Auto-detects cloud providers, runs relevant checks, and prints a prioritized report.
Usage
valqore checkup [OPTIONS]Options
| Flag | Default | Description |
|---|---|---|
--scope <scope> | all | Limit checks: all, aws, k8s, security, cost, or reliability. |
--region <region> | auto | AWS region to check. |
--profile <name> | default | AWS CLI profile name. |
--output <format> | rich | Output format: rich (terminal) or json. |
Example Output
$ valqore checkup
╔══════════════════════════════════════════════════════════╗
║ VALQORE ENVIRONMENT CHECKUP ║
╚══════════════════════════════════════════════════════════╝
Detected: AWS (us-east-1) · Kubernetes (eks-prod) · 3 namespaces
Running checks ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24/24 ✓
┌─────────────────────────────────────────────────────────┐
│ INCIDENTS (3 correlated from 11 findings) │
├─────────────────────────────────────────────────────────┤
│ ● CRITICAL Over-privileged service account │
│ Fix: Scope to namespace-level Role │
│ ▲ WARNING Cost anomaly — idle resources │
│ Est. waste: $124.50/mo │
│ ○ INFO Region carbon intensity above average │
└─────────────────────────────────────────────────────────┘
Score: 71/100 │ Est. Cost: $892/mo │ Carbon: 48 kg CO₂e/moScoped Examples
# Cost-only checkup
valqore checkup --scope cost
# Security-only checkup
valqore checkup --scope security
# JSON output for CI pipelines
valqore checkup --output json | jq '.incidents[] | select(.severity == "CRITICAL")'Was this helpful?
Prev
Next