What you will build
The Hardware You Already Own is written as a path you can finish in one sitting if the prerequisites are honest. No dashboard tourism — files, commands, and a check at the end.


Prerequisites
- A machine you can break without a ticket.
- CLI tools installed and on PATH.
- Credentials scoped to the lab, not production.
- Twenty uninterrupted minutes.
Steps
- STEP01
Scaffold the working directory
Keep manifests and notes beside each other so the next reader inherits context.
Scaffold the working directoryyamlmkdir -p ~/benchlog-lab && cd ~/benchlog-lab - STEP02
Apply the minimal config
Start with the smallest file that proves the control plane answers.
Apply the minimal configyamlkubectl apply -f 00-namespace.yaml - STEP03
Verify before you decorate
If the pod is not Ready, stop. Charts and ingress come after truth.
Verify before you decorateyamlkubectl get pods -w
apiVersion: v1kind: Namespacemetadata: name: benchlog-lab labels: purpose: guide-specimen| Check | Command | Expect |
|---|---|---|
| API up | kubectl get --raw=/readyz | ok |
| Namespace | kubectl get ns benchlog-lab | Active |
| Workload | kubectl get pods -n benchlog-lab | 1/1 Running |
https://www.youtube.com/watch?v=4ht22ReBjZw · optional
Done means you can explain every hop without opening a dashboard. If you cannot, rewind to the step that skipped the why.
.jpg)


