42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: ApplicationSet
|
|
metadata:
|
|
name: tenants
|
|
namespace: argocd
|
|
spec:
|
|
goTemplate: true
|
|
goTemplateOptions: ["missingkey=error"]
|
|
generators:
|
|
- git:
|
|
repoURL: https://git.bouvais.lu/adrien/ctie-exercice
|
|
revision: main
|
|
files:
|
|
- path: "tenants/tenant-*/config.yaml"
|
|
template:
|
|
metadata:
|
|
name: 'tenant-{{ trimPrefix "tenant-" .path.basename }}'
|
|
spec:
|
|
project: tenants
|
|
sources:
|
|
- repoURL: https://git.bouvais.lu/adrien/ctie-exercice
|
|
targetRevision: main
|
|
path: charts/tenant
|
|
helm:
|
|
valueFiles:
|
|
- '$values/{{.path.path}}/config.yaml'
|
|
parameters:
|
|
- name: name
|
|
value: '{{ trimPrefix "tenant-" .path.basename }}'
|
|
- repoURL: https://git.bouvais.lu/adrien/ctie-exercice
|
|
targetRevision: main
|
|
ref: values
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: 'tenant-{{ trimPrefix "tenant-" .path.basename }}'
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|