forked from eddycharly/kind-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kubeview.yaml
38 lines (38 loc) · 979 Bytes
/
kubeview.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
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: kubeview
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://raw.githubusercontent.com/benc-uk/kubeview/master/charts
chart: kubeview
targetRevision: '*'
helm:
values: |
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: ca-issuer
hosts:
- host: kubeview.kind.cluster
tls:
- secretName: kubeview.kind.cluster
hosts:
- kubeview.kind.cluster
destination:
server: https://kubernetes.default.svc
namespace: kubeview
revisionHistoryLimit: 3
syncPolicy:
syncOptions:
- ApplyOutOfSyncOnly=true
- CreateNamespace=true
- FailOnSharedResource=true
- PruneLast=true
automated:
prune: true
selfHeal: true