29 lines
716 B
YAML
29 lines
716 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: gitops-status-server
|
|
namespace: argocd
|
|
spec:
|
|
project: observability-stack
|
|
source:
|
|
repoURL: ssh://git@gitea-ssh.dev-tools.svc.cluster.local:2222/dvirlabs/observability-stack.git
|
|
targetRevision: HEAD
|
|
path: charts/gitops-status-server
|
|
helm:
|
|
valueFiles:
|
|
- ../../manifests/gitops-status-server/values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: observability-stack
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m |