blob: e583c8197986d0d8e789cd206e469e1d58a52a3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: third-party-apps-applicationset
namespace: default
spec:
generators:
- list:
elements:
- chart: gitea
path: third-party-apps/gitea
template:
metadata:
name: '{{chart}}'
spec:
project: default
source:
repoURL: 'https://github.com/makefunstuff/k3s-lab'
targetRevision: HEAD
path: '{{path}}'
destination:
server: 'https://kubernetes.default.svc'
namespace: apps
syncPolicy:
automated:
prune: true
selfHeal: true
|