Rename indri-services-check to services-check (#103)
## Summary - Rename `indri-services-check` task to `services-check` since it checks all services (indri native, Kubernetes, HTTP endpoints), not just indri-specific ones - Update references in CLAUDE.md, ai-assistance-guide.md, and troubleshooting.md ## Deployment and Testing - [ ] Run `mise run services-check` to verify the task works under its new name Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/103
This commit is contained in:
parent
aabfcf6fc0
commit
e720b524d3
5 changed files with 7 additions and 6 deletions
|
|
@ -21,7 +21,7 @@ blumeops is Erich Blume's GitOps repository for personal infrastructure, orchest
|
||||||
7. **Test before applying** - dry runs (`--check --diff`), syntax checks, `ssh indri '...'`
|
7. **Test before applying** - dry runs (`--check --diff`), syntax checks, `ssh indri '...'`
|
||||||
8. **Wait for user review before deploying**
|
8. **Wait for user review before deploying**
|
||||||
9. **Never merge PRs or push to main without explicit request**
|
9. **Never merge PRs or push to main without explicit request**
|
||||||
10. **Verify deployments** - `mise run indri-services-check`
|
10. **Verify deployments** - `mise run services-check`
|
||||||
|
|
||||||
## Project Structure
|
## Project Structure
|
||||||
|
|
||||||
|
|
|
||||||
1
docs/changelog.d/rename-services-check.misc.md
Normal file
1
docs/changelog.d/rename-services-check.misc.md
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Rename `indri-services-check` task to `services-check` since it checks all services, not just indri.
|
||||||
|
|
@ -14,7 +14,7 @@ Quick reference for diagnosing and fixing common BlumeOps issues.
|
||||||
Run the comprehensive service health check:
|
Run the comprehensive service health check:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mise run indri-services-check
|
mise run services-check
|
||||||
```
|
```
|
||||||
|
|
||||||
This checks all services on indri and in Kubernetes.
|
This checks all services on indri and in Kubernetes.
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ BlumeOps operations are driven by mise tasks. Run `mise tasks` to list all avail
|
||||||
|------|-------------|
|
|------|-------------|
|
||||||
| `zk-docs` | At session start - review infrastructure documentation |
|
| `zk-docs` | At session start - review infrastructure documentation |
|
||||||
| `provision-indri` | Deploy changes to [[indri]]-hosted services via Ansible |
|
| `provision-indri` | Deploy changes to [[indri]]-hosted services via Ansible |
|
||||||
| `indri-services-check` | After deployments - verify all services are healthy |
|
| `services-check` | After deployments - verify all services are healthy |
|
||||||
| `pr-comments` | Check unresolved PR comments during review |
|
| `pr-comments` | Check unresolved PR comments during review |
|
||||||
| `blumeops-tasks` | Find pending tasks from Todoist |
|
| `blumeops-tasks` | Find pending tasks from Todoist |
|
||||||
| `container-list` | View available container images and tags |
|
| `container-list` | View available container images and tags |
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#MISE description="Check that all indri services are online and responding"
|
#MISE description="Check that all services are online and responding"
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
|
@ -36,8 +36,8 @@ check_http() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Checking indri services..."
|
echo "Checking services..."
|
||||||
echo "=========================="
|
echo "===================="
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
# Local services on indri
|
# Local services on indri
|
||||||
Loading…
Add table
Add a link
Reference in a new issue