diff --git a/helm/jenkins/argocd-application.yaml b/helm/jenkins/argocd-application.yaml new file mode 100644 index 0000000..c9b24dd --- /dev/null +++ b/helm/jenkins/argocd-application.yaml @@ -0,0 +1,28 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: jenkins + namespace: argocd +spec: + project: default + source: + repoURL: http://gitea-http.gitea.svc.cluster.local:3000/admin/k3s-gitops + path: helm/jenkins # Helm chart directory + targetRevision: HEAD + helm: + valueFiles: + - values.yaml # default values + # To override per-environment add values here: + # values: | + # replicaCount: 2 + # persistence: + # size: 50Gi + destination: + server: https://kubernetes.default.svc + namespace: jenkins + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true