25 lines
477 B
YAML
25 lines
477 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: jenkins
|
|
namespace: argocd
|
|
|
|
spec:
|
|
project: default
|
|
|
|
source:
|
|
repoURL: https://repo.qruize.com/Dhakshan/gitops.git
|
|
targetRevision: main
|
|
path: bootstrap-platform/jenkins
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: jenkins
|
|
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true |