Replace the Helm chart deployment with plain kustomize manifests following the Authentik pattern (separate deployments per component). Consolidate the immich-storage ArgoCD app into the main immich app. Add no-helm-policy doc establishing kustomize as the standard deployment mechanism. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
514 B
YAML
22 lines
514 B
YAML
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: immich
|
|
resources:
|
|
- deployment-server.yaml
|
|
- deployment-ml.yaml
|
|
- deployment-valkey.yaml
|
|
- service.yaml
|
|
- service-ml.yaml
|
|
- service-valkey.yaml
|
|
- pvc-ml-cache.yaml
|
|
- pv-nfs.yaml
|
|
- pvc.yaml
|
|
- ingress-tailscale.yaml
|
|
images:
|
|
- name: ghcr.io/immich-app/immich-server
|
|
newTag: v2.6.3
|
|
- name: ghcr.io/immich-app/immich-machine-learning
|
|
newTag: v2.6.3
|
|
- name: docker.io/valkey/valkey
|
|
newTag: "8.1-alpine"
|