This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamunda-values.yaml
127 lines (115 loc) · 3.6 KB
/
camunda-values.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
global:
ingress:
enabled: true
className: nginx
host: "example.com"
tls:
## @param global.ingress.tls.enabled if true, then tls is configured on the ingress resource. If enabled the Ingress.host need to be defined.
enabled: true
## @param global.ingress.tls.secretName defines the secret name which contains the TLS private key and certificate
secretName: webapps-tls
annotations:
cert-manager.io/issuer: "letsencrypt-prod"
ingress.kubernetes.io/rewrite-target: "/"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
identity:
auth:
publicIssuerUrl: "https://example.com/auth/realms/camunda-platform"
operate:
redirectUrl: "https://example.com/operate"
tasklist:
redirectUrl: "https://example.com/tasklist"
optimize:
redirectUrl: "https://example.com/optimize"
identity:
contextPath: "/identity"
enabled: true
fullURL: "https://example.com/identity"
connectors:
enabled: false
operate:
contextPath: "/operate"
env:
- name: CAMUNDA_OPERATE_BACKUP_REPOSITORY_NAME
value: "operate-backup"
optimize:
contextPath: "/optimize"
env:
- name: CAMUNDA_OPTIMIZE_BACKUP_REPOSITORY_NAME
value: "optimize-backup"
tasklist:
contextPath: "/tasklist"
env:
- name: CAMUNDA_TASKLIST_BACKUP_REPOSITORY_NAME
value: "tasklist-backup"
zeebe-gateway:
ingress:
enabled: true
className: nginx
host: "zeebe.example.com"
annotations:
cert-manager.io/issuer: "letsencrypt-prod"
ingress.kubernetes.io/rewrite-target: "/"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/backend-protocol: "GRPC"
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"
tls:
## @param global.ingress.tls.enabled if true, then tls is configured on the ingress resource. If enabled the Ingress.host need to be defined.
enabled: true
## @param global.ingress.tls.secretName defines the secret name which contains the TLS private key and certificate
secretName: gateway-tls
env:
- name: ZEEBE_GATEWAY_SECURITY_AUTHENTICATION_MODE
value: none
# Backup
zeebe:
env:
- name: ZEEBE_BROKER_DATA_BACKUP_STORE
value: "S3"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_BUCKETNAME
value: "zeebe-backup"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_FORCEPATHSTYLEACCESS
value: "true"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_ENDPOINT
value: "http://minio:9000"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_ACCESSKEY
value: "minioadmin"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_SECRETKEY
value: "minioadmin"
- name: ZEEBE_BROKER_DATA_BACKUP_S3_REGION
value: "us-east-1"
elasticsearch:
global:
kibanaEnabled: true
kibana:
image:
tag: 8.9.2
ingress:
tls: true
ingressClassName: nginx
enabled: true
hostname: "example.com"
path: "/kibana"
annotations:
cert-manager.io/issuer: "letsencrypt-prod"
ingress.kubernetes.io/rewrite-target: "/"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
configuration:
server:
basePath: "/kibana"
rewriteBasePath: true
readinessProbe:
enabled: false
initScripts:
init-keystore.sh: |
#!/bin/bash
set -e
echo "Adding S3 access keys to Elasticsearch keystore..."
# Add S3 client default keys to the keystore
echo "$S3_SECRET_KEY" | elasticsearch-keystore add -x s3.client.default.secret_key
echo "$S3_ACCESS_KEY" | elasticsearch-keystore add -x s3.client.default.access_key
extraEnvVars:
- name: S3_SECRET_KEY
value: minioadmin
- name: S3_ACCESS_KEY
value: minioadmin