- Add application.yaml for ArgoCD app-of-apps - Add kustomization.yaml with storage components - Add renovate.json for automated updates - Update all component argocd.yaml repoURLs to storage repo Components: longhorn, minio, postgresql, postgresql-dev, pgweb, cnpg, velero
32 lines
670 B
YAML
32 lines
670 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: pgweb
|
|
namespace: argocd
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
sources:
|
|
- repoURL: https://github.com/K3S-HOME/storage.git
|
|
targetRevision: main
|
|
path: pgweb
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: pgweb
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|
|
managedNamespaceMetadata:
|
|
labels:
|
|
goldilocks.fairwinds.com/enabled: 'true'
|