[PATCH 3/4] docs: remove deprecated -i hosts pattern from CLAUDE.md example
Daniel Gomez <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
From: Daniel Gomez <[email protected]> The example ansible command was using the deprecated explicit inventory pattern "-i hosts" instead of relying on ansible.cfg configuration. This updates the documentation to show the correct pattern that leverages the configured inventory file. Generated-by: Claude AI Signed-off-by: Daniel Gomez <[email protected]> --- CLAUDE.md | 2 +- docs/reboot-limit.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index c7b33b66..ef1d6fcc 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -30,7 +30,7 @@ Device Under Test (DUT) systems. - **ALWAYS** verify that test systems are running and accessible before analysis ### Valid approaches: -- ✅ Execute real tests: `ansible -i hosts all -m shell -a "fio --output-format=json ..."` +- ✅ Execute real tests: `ansible all -m shell -a "fio --output-format=json ..."` - ✅ Collect actual JSON output from running VMs - ✅ Parse and analyze real performance data from live systems - ✅ Generate graphs and reports from actual test execution results diff --git a/docs/reboot-limit.md b/docs/reboot-limit.md index e9f9efe9..305d9ade 100644 --- a/docs/reboot-limit.md +++ b/docs/reboot-limit.md @@ -176,7 +176,7 @@ Enable verbose output for troubleshooting: make reboot-limit-baseline AV=3 # Check individual node status -ansible -i hosts all -m shell -a "cat /data/reboot-limit/*/reboot-count.txt" +ansible baseline:dev:service -m shell -a "cat /data/reboot-limit/*/reboot-count.txt" ``` ## Interpreting Performance Data -- 2.50.1