-
Notifications
You must be signed in to change notification settings - Fork 23
/
argocd-app.yaml
41 lines (41 loc) · 1.24 KB
/
argocd-app.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
40
41
apiVersion: apps.kubermatic.k8c.io/v1
kind: ApplicationDefinition
metadata:
name: argocd
spec:
description: Argo CD - Declarative Continuous Delivery for Kubernetes.
method: helm
versions:
- template:
source:
helm:
chartName: argo-cd
chartVersion: 5.4.3
url: https://argoproj.github.io/argo-helm
version: 2.4.11
# During the applicationdefinition creation time if the defaultValues is updated, then it is render for override during the application creation process from UI.
# By default, it is set empty.
defaultValues:
server:
certificate:
enabled: true
domain: argocd.xxxx.lab.kubermatic.io
issuer:
group: cert-manager.io
kind: ClusterIssuer
name: letsencrypt-prod
secretName: argocd-tls
ingress:
enabled: true
https: true
hosts:
- argocd.xxxx.lab.kubermatic.io
ingressClassName: 'nginx'
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/tls-acme: 'true'
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
tls:
- secretName: argocd-tls
hosts:
- argocd.xxxx.lab.kubermatic.io