Skip to content

Commit f0f2652

Browse files
[CONFIG] Updated barebones values for Zeebe 1.1 (#5)
1 parent 41d0695 commit f0f2652

File tree

1 file changed

+52
-4
lines changed

1 file changed

+52
-4
lines changed

helm/payment-hub-barebone/values.yaml

+52-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
ph-ee-engine:
2-
zeebe-cluster:
2+
zeebe-cluster-helm:
33
global:
44
elasticsearch:
55
host: "ph-ee-elasticsearch"
6+
image:
7+
repository: camunda/zeebe
8+
tag: 1.1.0
69

710
clusterSize: "1"
811
partitionCount: "1"
@@ -13,12 +16,30 @@ ph-ee-engine:
1316
kibana:
1417
enabled: false
1518

16-
zeebe-operate:
17-
enabled: false
19+
extraInitContainers: |
20+
- name: init-ph-ee-kafka-exporter
21+
image: busybox:1.28
22+
command: ['/bin/sh', '-c']
23+
args: ['wget -O /exporters/ph-ee-kafka-exporter.jar "https://paymenthub-ee-dev.s3.us-east-2.amazonaws.com/jars/exporter-1.0.0-SNAPSHOT.jar"; ls -al /exporters/']
24+
volumeMounts:
25+
- name: exporters
26+
mountPath: /exporters/
27+
28+
zeebe-operate-helm:
29+
enabled: true
30+
image:
31+
repository: camunda/operate
32+
tag: 1.1.0
33+
global:
34+
elasticsearch:
35+
host: "ph-ee-elasticsearch"
36+
clusterName: "ph-ee-elasticsearch"
1837

1938
elasticsearch:
2039
enabled: true
2140
replicas: 1
41+
imageTag: 7.13.2
42+
minimumMasterNodes: 1
2243

2344
#Single Node Solution
2445
clusterHealthCheckParams: "wait_for_status=yellow&timeout=100s"
@@ -40,10 +61,35 @@ ph-ee-engine:
4061
discovery:
4162
type: single-node
4263
seed_hosts: ""
43-
64+
xpack:
65+
security:
66+
enabled: false
67+
68+
# Shrink default JVM heap.
69+
esJavaOpts: "-Xmx128m -Xms128m"
70+
71+
# Allocate smaller chunks of memory per pod.
72+
resources:
73+
requests:
74+
cpu: "100m"
75+
memory: "512M"
76+
limits:
77+
cpu: "1000m"
78+
memory: "512M"
79+
volumeClaimTemplate:
80+
accessModes: [ "ReadWriteOnce" ]
81+
storageClassName: "standard"
82+
resources:
83+
requests:
84+
storage: 10Gi
4485

4586
kibana:
4687
enabled: true
88+
imageTag: 7.13.2
89+
90+
kibanaConfig:
91+
kibana.yml: |
92+
monitoring.enabled: false
4793
4894
operations:
4995
enabled: true
@@ -69,6 +115,8 @@ ph-ee-engine:
69115
ph_ee_connector_channel:
70116
SPRING_PROFILES_ACTIVE: "bb"
71117
hostname: "barebone-connector-channel.mifos.io"
118+
AWS_ACCESS_KEY: "xxx"
119+
AWS_SECRET_KEY: "xxx"
72120

73121
ph_ee_operations_app:
74122
SPRING_PROFILES_ACTIVE: "bb"

0 commit comments

Comments
 (0)