mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 23:10:22 +07:00
29 lines
646 B
YAML
29 lines
646 B
YAML
|
apiVersion: argoproj.io/v1alpha1
|
||
|
kind: ApplicationSet
|
||
|
metadata:
|
||
|
name: applications
|
||
|
spec:
|
||
|
generators:
|
||
|
- git:
|
||
|
repoURL: https://github.com/khuedoan/homelab.git
|
||
|
revision: master
|
||
|
directories:
|
||
|
- path: applications/*
|
||
|
template:
|
||
|
metadata:
|
||
|
name: '{{path.basename}}'
|
||
|
spec:
|
||
|
destination:
|
||
|
name: in-cluster
|
||
|
namespace: '{{path.basename}}'
|
||
|
project: default
|
||
|
source:
|
||
|
repoURL: https://github.com/khuedoan/homelab.git
|
||
|
path: '{{path}}'
|
||
|
syncPolicy:
|
||
|
automated:
|
||
|
prune: true
|
||
|
selfHeal: true
|
||
|
syncOptions:
|
||
|
- CreateNamespace=true
|