- New ansible role ansible/roles/devpi installs devpi-server + devpi-web into a uv-managed venv at ~erichblume/devpi/venv, initializes the server-dir on first run (via 1Password root password fetched in playbook pre_tasks), and runs as a LaunchAgent bound to 127.0.0.1:3141. - Caddy: switch the pypi.ops.eblu.me backend from the tailscale ingress to http://localhost:3141. - Playbook indri.yml: add pre_tasks to fetch the devpi root password from 1Password and include the new role. The minikube StatefulSet has been scaled to 0 to free memory; the ArgoCD app + manifests will be removed in a follow-up commit once the launchd service is verified. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
1 KiB
Django/Jinja
34 lines
1 KiB
Django/Jinja
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- {{ ansible_managed }} -->
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>mcquack.eblume.devpi</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>{{ devpi_binary }}</string>
|
|
<string>--serverdir</string>
|
|
<string>{{ devpi_server_dir }}</string>
|
|
<string>--host</string>
|
|
<string>{{ devpi_host }}</string>
|
|
<string>--port</string>
|
|
<string>{{ devpi_port }}</string>
|
|
<string>--outside-url</string>
|
|
<string>{{ devpi_outside_url }}</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>{{ devpi_venv }}/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
|
|
</dict>
|
|
<key>StandardOutPath</key>
|
|
<string>{{ devpi_log_dir }}/mcquack.devpi.out.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>{{ devpi_log_dir }}/mcquack.devpi.err.log</string>
|
|
</dict>
|
|
</plist>
|