forked from atoy3731/k8s-tools-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumbrella-tools.yaml
39 lines (39 loc) · 896 Bytes
/
umbrella-tools.yaml
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
29
30
31
32
33
34
35
36
37
38
39
apiVersion: argoproj.io/v1alpha1
kind: AppProject
metadata:
name: tools
namespace: kube-system
# Finalizer that ensures that project is not deleted until it is not referenced by any application
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
description: Tools Project
clusterResourceWhitelist:
- group: '*'
kind: '*'
destinations:
- namespace: '*'
server: '*'
sourceRepos:
- '*'
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: umbrella-tools
namespace: kube-system
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: kube-system
server: https://kubernetes.default.svc
project: tools
source:
path: resources/tools/
repoURL: https://github.com/almadigabor/k8s-tools-app.git
targetRevision: master
syncPolicy:
automated:
prune: true
selfHeal: true