- ArgoCD Image Updater for Zot registry polling - Tekton Tasks: git-clone, buildah-build-push - Pipelines: nextjs, fastapi, python - ExternalSecrets for Zot and GitHub credentials
36 lines
876 B
YAML
36 lines
876 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/helm-values.yaml
|
|
- repoURL: https://github.com/K3S-HOME/platform.git
|
|
targetRevision: main
|
|
ref: values
|
|
- repoURL: https://github.com/K3S-HOME/platform.git
|
|
targetRevision: main
|
|
path: argocd-image-updater/manifests
|
|
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
|