- Add Hajimari ArgoCD application and Helm values - Configure auto-discovery from k8s ingresses - Add custom apps for non-k8s services: Forge, Registry, Sifaka NAS - Add hajimari.io annotations to all ingresses with ops.eblu.me URLs - Add Caddy proxy entries for go.ops.eblu.me and nas.ops.eblu.me Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
820 B
YAML
32 lines
820 B
YAML
# Tailscale Ingress for Immich
|
|
# Exposes Immich at photos.tail8d86e.ts.net
|
|
# Caddy will proxy photos.ops.eblu.me to this endpoint
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: immich-tailscale
|
|
namespace: immich
|
|
annotations:
|
|
tailscale.com/funnel: "false"
|
|
hajimari.io/enable: "true"
|
|
hajimari.io/url: "https://photos.ops.eblu.me"
|
|
hajimari.io/icon: "mdi:image-multiple"
|
|
hajimari.io/appName: "Immich"
|
|
hajimari.io/group: "Apps"
|
|
hajimari.io/info: "Photo management"
|
|
spec:
|
|
ingressClassName: tailscale
|
|
rules:
|
|
- host: photos
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: immich-server
|
|
port:
|
|
number: 2283
|
|
tls:
|
|
- hosts:
|
|
- photos
|