- Move image-updater Application to argocd folder - Move helm-values and secrets to argocd - Remove separate argocd-image-updater folder - Update kustomization references
33 lines
745 B
YAML
33 lines
745 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argocd-image-updater
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
sources:
|
|
- repoURL: https://argoproj.github.io/argo-helm
|
|
chart: argocd-image-updater
|
|
targetRevision: 0.11.0
|
|
helm:
|
|
valueFiles:
|
|
- $values/argocd/image-updater-values.yaml
|
|
- repoURL: https://github.com/K3S-HOME/platform.git
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: argocd
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|