## Summary
- Widen `repo-creds-forge` URL prefix from `/eblume/` to host-wide `/` so it matches repos in all forge orgs (fixes `mirrors/` repos not getting SSH credentials)
- Update 8 ArgoCD app definitions from `eblume/<mirror>` → `mirrors/<mirror>` (immich-charts, cloudnative-pg-charts, external-secrets, connect-helm-charts)
- Fix stale alloy clone comment in Ansible defaults
- Bump immich v2.5.2 → v2.5.6 (bug-fix patches only)
- Update ArgoCD README bootstrap command and credential docs
## Context
Mirrors were migrated from `forge.ops.eblu.me/eblume/` to `forge.ops.eblu.me/mirrors/` in commit `cd57814`. Container Dockerfiles and image tags were updated, but ArgoCD app definitions and the repo credential template were missed, causing `ComparisonError` on apps that source Helm charts from mirrored repos.
## Deployment
1. Sync the ArgoCD `argocd` app first (picks up the widened credential template)
2. Sync the `apps` app (picks up new repo URLs for all 8 apps)
3. Verify immich resolves its ComparisonError: `argocd app get immich`
4. Sync immich to deploy v2.5.6: `argocd app sync immich`
5. Spot-check: `argocd app get external-secrets`, `argocd app get cloudnative-pg`, `argocd app get 1password-connect`
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/266
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
# Immich - Self-hosted photo and video management
|
|
# High-performance Google Photos/iCloud alternative with AI features
|
|
#
|
|
# Chart mirrored from https://github.com/immich-app/immich-charts to forge
|
|
#
|
|
# Prerequisites:
|
|
# 1. Mirror immich-charts to forge: https://github.com/immich-app/immich-charts
|
|
# 2. Create immich namespace and secrets:
|
|
# kubectl create namespace immich
|
|
# op inject -i argocd/manifests/immich/secret-db.yaml.tpl | kubectl apply -f -
|
|
# 3. Create immich-pg database and user (see immich-pg app)
|
|
# 4. Mount photos directory from indri to minikube
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: immich
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
sources:
|
|
# Helm chart from forge mirror (SSH via egress)
|
|
- repoURL: ssh://forgejo@forge.ops.eblu.me:2222/mirrors/immich-charts.git
|
|
targetRevision: immich-0.10.3
|
|
path: charts/immich
|
|
helm:
|
|
releaseName: immich
|
|
valueFiles:
|
|
- $values/argocd/manifests/immich/values.yaml
|
|
- repoURL: ssh://forgejo@forge.ops.eblu.me:2222/eblume/blumeops.git
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: immich
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|