2026-02-16 17:02:56 -08:00
|
|
|
# Service Version Tracking
|
|
|
|
|
#
|
|
|
|
|
# Tracks when each BlumeOps service was last reviewed for version freshness.
|
|
|
|
|
# Used by `mise run service-review` to surface stale services.
|
|
|
|
|
#
|
|
|
|
|
# Fields:
|
|
|
|
|
# name - kebab-case service identifier
|
2026-02-22 17:12:45 -08:00
|
|
|
# type - argocd | ansible | nixos
|
2026-02-16 17:02:56 -08:00
|
|
|
# last-reviewed - date (YYYY-MM-DD) or null
|
|
|
|
|
# current-version - deployed version string or null
|
|
|
|
|
# upstream-source - URL to upstream releases/changelog
|
|
|
|
|
# notes - optional context
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: prometheus
|
|
|
|
|
type: argocd
|
2026-03-18 08:46:07 -07:00
|
|
|
last-reviewed: 2026-03-18
|
|
|
|
|
current-version: "v3.10.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/prometheus/prometheus/releases
|
|
|
|
|
|
|
|
|
|
- name: loki
|
|
|
|
|
type: argocd
|
2026-03-20 16:10:19 -07:00
|
|
|
last-reviewed: 2026-03-20
|
|
|
|
|
current-version: "3.6.7"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/grafana/loki/releases
|
|
|
|
|
|
|
|
|
|
- name: kube-state-metrics
|
|
|
|
|
type: argocd
|
2026-03-22 19:31:22 -07:00
|
|
|
last-reviewed: 2026-03-22
|
2026-02-16 17:14:38 -08:00
|
|
|
current-version: "v2.18.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/kubernetes/kube-state-metrics/releases
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: ntfy
|
|
|
|
|
type: argocd
|
2026-03-23 10:32:06 -07:00
|
|
|
last-reviewed: 2026-03-23
|
|
|
|
|
current-version: "v2.19.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/binwiederhier/ntfy/releases
|
|
|
|
|
|
|
|
|
|
- name: homepage
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
Replace Homepage Helm chart with kustomize manifests and custom Dockerfile (#221)
## Summary
- Replace third-party Helm chart (jameswynn/homepage v2.1.0, pinned at app v1.2.0) with plain kustomize manifests and a custom Dockerfile building from forge mirror at v1.10.1
- Adds Dockerfile (`containers/homepage/`) with multi-stage build (node:22-slim builder, node:22-alpine runtime)
- Creates kustomize manifests: Deployment, Service, ConfigMap (6 config files), ServiceAccount, ClusterRole, ClusterRoleBinding
- Keeps existing ingress-tailscale.yaml and all 6 ExternalSecret resources unchanged
- Updates ArgoCD app definition from multi-source Helm to single directory source
## Prerequisite
- Homepage source mirrored at forge.ops.eblu.me/eblume/homepage.git ✅
- Container must be built and pushed before syncing: `mise run container-release homepage v1.10.1`
## Deployment and Testing
- [ ] Build and push container image: `mise run container-release homepage v1.10.1`
- [ ] Branch-test via ArgoCD: `argocd app set homepage --revision feature/homepage-kustomize && argocd app sync homepage`
- [ ] Verify dashboard loads at go.ops.eblu.me / go.tail8d86e.ts.net
- [ ] Verify k8s autodiscovery works (services appear on dashboard)
- [ ] Verify widgets load (weather, Forgejo, Jellyfin, etc.)
- [ ] After merge: `argocd app set homepage --revision main && argocd app sync homepage`
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/221
2026-02-19 18:29:19 -08:00
|
|
|
last-reviewed: 2026-02-19
|
|
|
|
|
current-version: "v1.10.1"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/gethomepage/homepage/releases
|
Replace Homepage Helm chart with kustomize manifests and custom Dockerfile (#221)
## Summary
- Replace third-party Helm chart (jameswynn/homepage v2.1.0, pinned at app v1.2.0) with plain kustomize manifests and a custom Dockerfile building from forge mirror at v1.10.1
- Adds Dockerfile (`containers/homepage/`) with multi-stage build (node:22-slim builder, node:22-alpine runtime)
- Creates kustomize manifests: Deployment, Service, ConfigMap (6 config files), ServiceAccount, ClusterRole, ClusterRoleBinding
- Keeps existing ingress-tailscale.yaml and all 6 ExternalSecret resources unchanged
- Updates ArgoCD app definition from multi-source Helm to single directory source
## Prerequisite
- Homepage source mirrored at forge.ops.eblu.me/eblume/homepage.git ✅
- Container must be built and pushed before syncing: `mise run container-release homepage v1.10.1`
## Deployment and Testing
- [ ] Build and push container image: `mise run container-release homepage v1.10.1`
- [ ] Branch-test via ArgoCD: `argocd app set homepage --revision feature/homepage-kustomize && argocd app sync homepage`
- [ ] Verify dashboard loads at go.ops.eblu.me / go.tail8d86e.ts.net
- [ ] Verify k8s autodiscovery works (services appear on dashboard)
- [ ] Verify widgets load (weather, Forgejo, Jellyfin, etc.)
- [ ] After merge: `argocd app set homepage --revision main && argocd app sync homepage`
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/221
2026-02-19 18:29:19 -08:00
|
|
|
notes: Custom container, kustomize manifests
|
2026-02-16 17:02:56 -08:00
|
|
|
|
2026-02-19 14:27:04 -08:00
|
|
|
- name: nvidia-device-plugin
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-02-19
|
|
|
|
|
current-version: "v0.18.2"
|
|
|
|
|
upstream-source: https://github.com/NVIDIA/k8s-device-plugin/releases
|
|
|
|
|
notes: DaemonSet + RuntimeClass on ringtail for GPU workloads
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: frigate
|
|
|
|
|
type: argocd
|
2026-03-24 07:30:18 -07:00
|
|
|
last-reviewed: 2026-03-24
|
|
|
|
|
current-version: "0.17.1"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/blakeblackshear/frigate/releases
|
|
|
|
|
|
|
|
|
|
- name: frigate-notify
|
|
|
|
|
type: argocd
|
2026-02-22 08:42:47 -08:00
|
|
|
last-reviewed: 2026-02-22
|
|
|
|
|
current-version: "v0.5.4"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/0x2142/frigate-notify/releases
|
|
|
|
|
|
2026-03-05 10:51:07 -08:00
|
|
|
- name: tempo
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-03-05
|
|
|
|
|
current-version: "2.10.1"
|
|
|
|
|
upstream-source: https://github.com/grafana/tempo/releases
|
|
|
|
|
|
|
|
|
|
- name: alloy-tracing-ringtail
|
|
|
|
|
type: argocd
|
2026-03-13 16:25:27 -07:00
|
|
|
last-reviewed: 2026-03-13
|
|
|
|
|
current-version: "v1.14.0"
|
2026-03-05 10:51:07 -08:00
|
|
|
upstream-source: https://github.com/grafana/alloy/releases
|
|
|
|
|
notes: Privileged DaemonSet with Beyla eBPF for HTTP tracing on ringtail
|
|
|
|
|
|
2026-03-13 16:25:27 -07:00
|
|
|
- name: alloy-ringtail
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-03-13
|
|
|
|
|
current-version: "v1.14.0"
|
|
|
|
|
upstream-source: https://github.com/grafana/alloy/releases
|
|
|
|
|
notes: DaemonSet on ringtail for host metrics and pod logs
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: alloy-k8s
|
|
|
|
|
type: argocd
|
2026-03-13 16:25:27 -07:00
|
|
|
last-reviewed: 2026-03-13
|
|
|
|
|
current-version: "v1.14.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/grafana/alloy/releases
|
|
|
|
|
|
|
|
|
|
- name: tailscale-operator
|
|
|
|
|
type: argocd
|
2026-03-22 19:31:22 -07:00
|
|
|
last-reviewed: 2026-03-22
|
2026-03-22 19:41:40 -07:00
|
|
|
current-version: "v1.94.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/tailscale/tailscale/releases
|
|
|
|
|
|
|
|
|
|
- name: grafana
|
|
|
|
|
type: argocd
|
2026-02-23 15:06:00 -08:00
|
|
|
last-reviewed: 2026-02-23
|
2026-02-23 18:07:18 -08:00
|
|
|
current-version: "12.3.3"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/grafana/grafana/releases
|
2026-03-04 07:53:22 -08:00
|
|
|
notes: Home-built container from Alpine; upgraded from Helm to Kustomize
|
2026-02-16 17:02:56 -08:00
|
|
|
|
2026-03-03 13:48:24 -08:00
|
|
|
- name: grafana-sidecar
|
|
|
|
|
type: argocd
|
2026-03-24 13:27:36 -07:00
|
|
|
parent: grafana
|
2026-03-03 13:48:24 -08:00
|
|
|
last-reviewed: "2026-03-03"
|
|
|
|
|
current-version: "1.28.0"
|
|
|
|
|
upstream-source: https://github.com/kiwigrid/k8s-sidecar/releases
|
|
|
|
|
notes: Dashboard ConfigMap watcher sidecar in grafana deployment
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: cloudnative-pg
|
|
|
|
|
type: argocd
|
2026-02-24 07:26:52 -08:00
|
|
|
last-reviewed: 2026-02-24
|
|
|
|
|
current-version: "v1.28.1"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/cloudnative-pg/cloudnative-pg/releases
|
2026-02-24 07:26:52 -08:00
|
|
|
notes: Deployed via Helm chart (chart v0.27.1 from forge mirror)
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: immich
|
|
|
|
|
type: argocd
|
2026-02-25 06:55:53 -08:00
|
|
|
last-reviewed: 2026-02-25
|
|
|
|
|
current-version: "v2.5.6"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/immich-app/immich/releases
|
|
|
|
|
notes: Deployed via Helm chart
|
|
|
|
|
|
|
|
|
|
- name: external-secrets
|
|
|
|
|
type: argocd
|
2026-02-17 10:48:09 -08:00
|
|
|
last-reviewed: 2026-02-17
|
|
|
|
|
current-version: "helm-chart-2.0.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/external-secrets/external-secrets/releases
|
2026-02-17 10:48:09 -08:00
|
|
|
notes: Deployed via Helm chart (operator v1.3.2)
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: 1password-connect
|
|
|
|
|
type: argocd
|
2026-02-26 06:51:50 -08:00
|
|
|
last-reviewed: 2026-02-26
|
|
|
|
|
current-version: "1.8.1"
|
|
|
|
|
upstream-source: https://hub.docker.com/r/1password/connect-api/tags
|
|
|
|
|
notes: Deployed via Helm chart (chart v2.3.0)
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: argocd
|
|
|
|
|
type: argocd
|
2026-02-26 06:51:50 -08:00
|
|
|
last-reviewed: 2026-02-26
|
|
|
|
|
current-version: "v3.3.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/argoproj/argo-cd/releases
|
2026-02-26 06:51:50 -08:00
|
|
|
notes: Kustomize-based install with ServerSideApply
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: blumeops-pg
|
|
|
|
|
type: argocd
|
2026-02-27 16:25:32 -08:00
|
|
|
last-reviewed: 2026-02-27
|
|
|
|
|
current-version: "18.3"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/cloudnative-pg/cloudnative-pg/releases
|
2026-02-27 16:25:32 -08:00
|
|
|
notes: CloudNativePG Cluster resource; pinned to PG minor version
|
2026-02-16 17:02:56 -08:00
|
|
|
|
2026-02-20 22:50:01 -08:00
|
|
|
- name: authentik
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-01 13:45:00 -08:00
|
|
|
last-reviewed: "2026-03-01"
|
|
|
|
|
current-version: "2026.2.0"
|
2026-02-20 22:50:01 -08:00
|
|
|
upstream-source: https://github.com/goauthentik/authentik/releases
|
|
|
|
|
|
2026-03-24 13:27:36 -07:00
|
|
|
- name: authentik-redis
|
|
|
|
|
type: argocd
|
|
|
|
|
parent: authentik
|
|
|
|
|
last-reviewed: "2026-03-24"
|
|
|
|
|
current-version: "8.2.3"
|
|
|
|
|
upstream-source: https://github.com/redis/redis/releases
|
|
|
|
|
notes: >-
|
|
|
|
|
Attached service: Redis cache/broker for Authentik (sessions, Celery task
|
|
|
|
|
queue, caching). Nix-built container from nixpkgs with version assertion.
|
|
|
|
|
|
2026-03-02 20:39:51 -08:00
|
|
|
- name: ollama
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: "2026-03-02"
|
|
|
|
|
current-version: "0.17.5"
|
|
|
|
|
upstream-source: https://github.com/ollama/ollama/releases
|
|
|
|
|
notes: LLM inference server on ringtail (GPU); upstream container image
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: navidrome
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-02 07:32:17 -08:00
|
|
|
last-reviewed: 2026-03-02
|
2026-02-20 22:50:01 -08:00
|
|
|
current-version: "v0.60.3"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/navidrome/navidrome/releases
|
|
|
|
|
|
|
|
|
|
- name: miniflux
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-02 07:32:17 -08:00
|
|
|
last-reviewed: 2026-03-02
|
2026-02-20 22:50:01 -08:00
|
|
|
current-version: "2.2.17"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/miniflux/v2/releases
|
|
|
|
|
|
|
|
|
|
- name: teslamate
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-03 11:56:40 -08:00
|
|
|
last-reviewed: 2026-03-03
|
|
|
|
|
current-version: "v3.0.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/teslamate-org/teslamate/releases
|
|
|
|
|
|
|
|
|
|
- name: transmission
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-04 07:44:33 -08:00
|
|
|
last-reviewed: 2026-03-04
|
|
|
|
|
current-version: "4.1.1-r1"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/transmission/transmission/releases
|
|
|
|
|
|
2026-03-04 21:55:00 -08:00
|
|
|
- name: transmission-exporter
|
|
|
|
|
type: argocd
|
2026-03-05 08:04:02 -08:00
|
|
|
last-reviewed: 2026-03-05
|
|
|
|
|
current-version: "1.0.1"
|
2026-03-04 21:55:00 -08:00
|
|
|
upstream-source: null
|
|
|
|
|
notes: Homegrown Python exporter, no upstream
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: kiwix
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-05 08:12:32 -08:00
|
|
|
last-reviewed: 2026-03-05
|
|
|
|
|
current-version: "3.8.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/kiwix/kiwix-tools/releases
|
|
|
|
|
|
|
|
|
|
- name: devpi
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-06 08:15:06 -08:00
|
|
|
last-reviewed: 2026-03-06
|
2026-02-20 22:50:01 -08:00
|
|
|
current-version: "6.19.1"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/devpi/devpi/releases
|
|
|
|
|
|
|
|
|
|
- name: cv
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-07 09:10:16 -08:00
|
|
|
last-reviewed: 2026-03-07
|
2026-02-20 22:50:01 -08:00
|
|
|
current-version: "1.0.3"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: null
|
|
|
|
|
notes: Personal static site, no upstream
|
|
|
|
|
|
|
|
|
|
- name: docs
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
2026-03-07 09:10:16 -08:00
|
|
|
last-reviewed: 2026-03-07
|
2026-02-20 22:50:01 -08:00
|
|
|
current-version: "1.28.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/jackyzha0/quartz/releases
|
2026-02-20 22:50:01 -08:00
|
|
|
notes: Quartz static site generator; container version tracks nginx base
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: forgejo-runner
|
2026-02-22 17:12:45 -08:00
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-02-22
|
2026-02-22 17:43:39 -08:00
|
|
|
current-version: "12.7.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://code.forgejo.org/forgejo/runner/releases
|
2026-02-22 17:12:45 -08:00
|
|
|
notes: >-
|
2026-02-23 17:44:51 -08:00
|
|
|
Runner daemon version (code.forgejo.org/forgejo/runner). Job execution
|
|
|
|
|
image is tracked separately as runner-job-image.
|
|
|
|
|
|
|
|
|
|
- name: runner-job-image
|
|
|
|
|
type: argocd
|
2026-03-06 20:32:05 -08:00
|
|
|
last-reviewed: 2026-03-06
|
|
|
|
|
current-version: "0.20.1"
|
2026-02-23 17:44:51 -08:00
|
|
|
upstream-source: https://github.com/dagger/dagger/releases
|
|
|
|
|
notes: >-
|
|
|
|
|
Forgejo Actions job execution image. CONTAINER_APP_VERSION tracks the
|
|
|
|
|
Dagger CLI version, the primary build tool in the image.
|
2026-02-16 17:02:56 -08:00
|
|
|
|
2026-02-22 17:12:45 -08:00
|
|
|
- name: nix-container-builder
|
|
|
|
|
type: nixos
|
|
|
|
|
last-reviewed: 2026-02-22
|
|
|
|
|
current-version: "12.6.4"
|
|
|
|
|
upstream-source: https://code.forgejo.org/forgejo/runner/releases
|
|
|
|
|
notes: Forgejo runner on ringtail via nixpkgs; version tracks flake.lock
|
2026-02-16 17:02:56 -08:00
|
|
|
|
2026-03-24 20:37:42 -07:00
|
|
|
- name: snowflake-proxy
|
|
|
|
|
type: nixos
|
|
|
|
|
last-reviewed: 2026-03-24
|
|
|
|
|
current-version: "2.11.0"
|
|
|
|
|
upstream-source: https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/releases
|
|
|
|
|
notes: Tor Snowflake proxy on ringtail; anti-censorship bridge, not an exit node
|
|
|
|
|
|
2026-03-16 21:59:10 -07:00
|
|
|
- name: mealie
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-03-16
|
|
|
|
|
current-version: "v3.12.0"
|
|
|
|
|
upstream-source: https://github.com/mealie-recipes/mealie/releases
|
|
|
|
|
notes: Recipe manager; built from source via forge mirror
|
|
|
|
|
|
2026-03-16 15:52:45 -07:00
|
|
|
- name: unpoller
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-03-16
|
|
|
|
|
current-version: "v2.34.0"
|
|
|
|
|
upstream-source: https://github.com/unpoller/unpoller/releases
|
|
|
|
|
notes: UniFi metrics exporter for Prometheus
|
|
|
|
|
|
2026-03-24 16:08:09 -07:00
|
|
|
- name: prowler
|
|
|
|
|
type: argocd
|
|
|
|
|
last-reviewed: 2026-03-24
|
|
|
|
|
current-version: "5.22.0"
|
|
|
|
|
upstream-source: https://github.com/prowler-cloud/prowler/releases
|
|
|
|
|
notes: CIS Kubernetes Benchmark scanner; weekly CronJob on minikube-indri
|
|
|
|
|
|
2026-02-16 17:02:56 -08:00
|
|
|
- name: forgejo
|
|
|
|
|
type: ansible
|
2026-02-22 17:12:45 -08:00
|
|
|
last-reviewed: 2026-02-22
|
|
|
|
|
current-version: "14.0.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://codeberg.org/forgejo/forgejo/releases
|
2026-02-22 17:12:45 -08:00
|
|
|
notes: Installed via Homebrew on indri; plan to migrate to source build
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: alloy
|
|
|
|
|
type: ansible
|
2026-03-13 16:25:27 -07:00
|
|
|
last-reviewed: 2026-03-13
|
|
|
|
|
current-version: "v1.14.0"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/grafana/alloy/releases
|
|
|
|
|
notes: Built from source on indri
|
|
|
|
|
|
|
|
|
|
- name: zot
|
|
|
|
|
type: ansible
|
2026-03-14 10:00:40 -07:00
|
|
|
last-reviewed: 2026-03-14
|
|
|
|
|
current-version: "v2.1.15"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/project-zot/zot/releases
|
|
|
|
|
notes: Built from source on indri
|
|
|
|
|
|
|
|
|
|
- name: caddy
|
|
|
|
|
type: ansible
|
2026-03-15 10:33:48 -07:00
|
|
|
last-reviewed: 2026-03-15
|
|
|
|
|
current-version: "v2.11.2"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/caddyserver/caddy/releases
|
2026-03-15 10:33:48 -07:00
|
|
|
notes: Built from source with Gandi DNS and Layer 4 plugins
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: borgmatic
|
|
|
|
|
type: ansible
|
2026-03-16 11:05:24 -07:00
|
|
|
last-reviewed: 2026-03-16
|
|
|
|
|
current-version: "2.1.3"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/borgmatic-collective/borgmatic/releases
|
2026-03-16 11:05:24 -07:00
|
|
|
notes: Installed via mise (pipx), not managed by Ansible role
|
2026-02-16 17:02:56 -08:00
|
|
|
|
|
|
|
|
- name: jellyfin
|
|
|
|
|
type: ansible
|
2026-03-17 13:06:23 -07:00
|
|
|
last-reviewed: 2026-03-17
|
|
|
|
|
current-version: "10.11.6"
|
2026-02-16 17:02:56 -08:00
|
|
|
upstream-source: https://github.com/jellyfin/jellyfin/releases
|
|
|
|
|
|
|
|
|
|
- name: automounter
|
|
|
|
|
type: ansible
|
2026-03-17 13:06:23 -07:00
|
|
|
last-reviewed: 2026-03-17
|
|
|
|
|
current-version: "1.11.0"
|
|
|
|
|
upstream-source: https://www.pixeleyes.co.nz/automounter/
|
|
|
|
|
notes: Mac App Store app, no Ansible role. Updates via App Store.
|