Review Services
How to periodically review BlumeOps services for version freshness and upgrade opportunities.
Review by Staleness
Show services sorted by when they were last reviewed (most stale first):
mise run service-reviewThis reads the tracking file at service-versions.yaml (repo root) and sorts by the last-reviewed field. Services without a review date float to the top. The script shows a staleness table and then displays the most stale service with a review checklist.
To show more entries in the table:
mise run service-review --limit 30To filter by service type:
mise run service-review --type argocd
mise run service-review --type ansible
mise run service-review --type hybridReview Process by Service Type
ArgoCD Services
- Check the upstream releases page for new versions
- Compare to the image tag or Helm chart version in
argocd/manifests/<service>/ - Review the upstream changelog for breaking changes
- If upgrading, update the manifest and follow deploy-k8s-service
Helm Chart Services
Same as ArgoCD, but also check for new chart versions in the mirrored chart repos under argocd/manifests/<service>/charts/.
Hybrid Services (Custom Container + ArgoCD)
- Check the upstream project for new releases
- Check the base image for security updates
- If rebuilding, follow build-container-image to tag and release
- Update the ArgoCD manifest with the new image tag
Ansible Services
- Check the upstream releases page for new versions
- Review the role’s vars/defaults for version pins in
ansible/roles/<service>/ - If upgrading, update the version and dry-run:
mise run provision-indri -- --tags <service> --check --diff - Follow add-ansible-role patterns for role changes
Version Tracking Convention
The current-version field in service-versions.yaml tracks the upstream application version, not the container image tag. For hybrid services, the container image tag (e.g., v1.0.0) is decoupled from the contained app version (e.g., v1.10.1). This allows container rebuilds (base image updates, build fixes) without implying an upstream version change.
Marking a Service as Reviewed
After reviewing, edit service-versions.yaml (repo root) and update the service entry:
- name: prometheus
type: argocd
last-reviewed: 2026-02-16
current-version: "v3.9.1"
upstream-source: https://github.com/prometheus/prometheus/releasesCommit this change alongside any upgrades you make during the review.
Related
- review-documentation - Periodically review documentation cards
- deploy-k8s-service - Deploy changes to Kubernetes services
- build-container-image - Build and release custom container images
- add-ansible-role - Add or modify Ansible roles