Repo transferred to riotpiao-poimen org. Old URL returns 301 redirect which ArgoCD doesn't follow — all 26 apps stopped syncing. Live cluster already patched via kubectl. This commit persists the fix.
33 lines
728 B
YAML
33 lines
728 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: comfyui
|
|
namespace: argocd
|
|
labels:
|
|
app.kubernetes.io/name: comfyui
|
|
app.kubernetes.io/component: image-generation
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "8"
|
|
spec:
|
|
project: homelab
|
|
revisionHistoryLimit: 3
|
|
source:
|
|
repoURL: https://forgejo.riotpiao.com/riotpiao-poimen/homelab.git
|
|
targetRevision: main
|
|
path: k8s/apps/comfyui
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: comfyui
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|