After a power cycle a transient HMAC Secrets Manager blip leaves go-fulfillr's gated routes unregistered (404) with the process still up, so nothing restarts it. Add a podman healthcheck probing the new dependency-free /api/v1/health/startup (503 until those routes register) with healthcheck_failure_action: restart, so podman restarts the container in place and the next boot self-heals. - fulfillr.yml + fulfillr-dev.yml: healthcheck via busybox wget (ships in the alpine image), interval 30s / timeout 5s / retries 3 / start_period 30s (covers the ~14s HMAC retry backoff), failure_action restart. Existing restart_policy on-failure:3 kept (process-exit case). - main.yml: bump fulfillr + fulfillr-dev image to 20260628.1930 (the build carrying the /health/startup probe). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Deploy Home
There's no place like home!
Just as Dorothy managed the simple task of clicking her heels together, the desire for an equally simple one-button push deployment was in my heart. Thus, this repository was made.
Ansible
Ansible, along with double encrypted secrets, deploys the necessary configurations to make the home fit for certain needs and desires. Namely, having access to my home from anywhere, securely, and a self-hosted CI server that easily ties into existing workflows.
Makefile
The makefile is primarily used as a wrapper script to ensure that necessary
files, such as the secret vault password file, are provisioned as part of this.
One such addition to the task is utilizing dependency pinning through the
utilization of Python's virtualenv to lock down the specific dependency
versions within the requirements.txt file. This, ideally, prevents any
deployment issues with dependency version woes (e.g. version conflicts, major
updates in newest versions, etc.)
| Target Name | Description |
|---|---|
lint |
(default) Runs yamllint and ansible-lint on all YAML files in ansible/ |
deploy |
Deploys everything, or only tasks specified in TAGS= environment variable |
check |
Runs deploy in a "dry-run", showing diff-style outputs on tasks indicating changes |
vault |
Opens the Ansible vault file for editing |