25 lines
508 B
YAML
25 lines
508 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: radar
|
|
namespace: argocd
|
|
labels:
|
|
env: infra
|
|
spec:
|
|
project: infra
|
|
source:
|
|
repoURL: 'ssh://git@gitea-ssh.dev-tools.svc.cluster.local:2222/dvirlabs/infra.git'
|
|
targetRevision: HEAD
|
|
path: charts/radar
|
|
helm:
|
|
valueFiles:
|
|
- ../../manifests/radar/values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: infra
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
|