Add Hajimari service dashboard (#73)
## Summary - Add Hajimari as a service dashboard/start page at `go.ops.eblu.me` - Auto-discovers k8s services from ingress annotations - Custom apps for non-k8s services: Forgejo, Registry, Sifaka NAS - Add `nas.ops.eblu.me` Caddy proxy to Synology dashboard ## Services Configured **Auto-discovered (k8s ingresses with hajimari.io annotations):** - Grafana, ArgoCD, Prometheus, Loki (Observability) - Miniflux, Kiwix, Transmission, TeslaMate, Immich (Apps) - PyPI/devpi (Infrastructure) **Custom apps (non-k8s):** - Forgejo (forge.ops.eblu.me) - Registry (registry.ops.eblu.me) - Sifaka NAS (nas.ops.eblu.me) **Bookmarks:** - Tailscale Admin, 1Password, Pulumi ## Deployment and Testing - [ ] Sync `apps` application to pick up new Hajimari Application - [ ] Sync `hajimari` application - [ ] Run `mise run provision-indri -- --tags caddy` for go/nas proxy entries - [ ] Re-sync all k8s apps with hajimari annotations (or wait for natural drift) - [ ] Verify https://go.ops.eblu.me shows dashboard with all services 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/73
This commit is contained in:
parent
3c3c90f206
commit
d1164c8aac
13 changed files with 164 additions and 0 deletions
32
argocd/apps/hajimari.yaml
Normal file
32
argocd/apps/hajimari.yaml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Hajimari - Service Dashboard / Start Page
|
||||
#
|
||||
# Using upstream Helm chart from https://hajimari.io
|
||||
#
|
||||
# Auto-discovers k8s services via ingress annotations and displays
|
||||
# custom apps for non-k8s services (Forge, Registry, NAS).
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: hajimari
|
||||
namespace: argocd
|
||||
spec:
|
||||
project: default
|
||||
sources:
|
||||
# Helm chart from upstream repo
|
||||
- repoURL: https://hajimari.io
|
||||
chart: hajimari
|
||||
targetRevision: 2.0.2
|
||||
helm:
|
||||
releaseName: hajimari
|
||||
valueFiles:
|
||||
- $values/argocd/manifests/hajimari/values.yaml
|
||||
# Values from our git repo
|
||||
- repoURL: ssh://forgejo@forge.ops.eblu.me:2222/eblume/blumeops.git
|
||||
targetRevision: main
|
||||
ref: values
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: hajimari
|
||||
syncPolicy:
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
Loading…
Add table
Add a link
Reference in a new issue