feat: jenkins ArgoCD Application — points to helm/jenkins chart

This commit is contained in:
Claude AI
2026-03-08 15:24:18 +00:00
parent bf29990add
commit b79af99667

View File

@@ -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