File tree 1 file changed +52
-4
lines changed
helm/payment-hub-barebone
1 file changed +52
-4
lines changed Original file line number Diff line number Diff line change 1
1
ph-ee-engine :
2
- zeebe-cluster :
2
+ zeebe-cluster-helm :
3
3
global :
4
4
elasticsearch :
5
5
host : " ph-ee-elasticsearch"
6
+ image :
7
+ repository : camunda/zeebe
8
+ tag : 1.1.0
6
9
7
10
clusterSize : " 1"
8
11
partitionCount : " 1"
@@ -13,12 +16,30 @@ ph-ee-engine:
13
16
kibana :
14
17
enabled : false
15
18
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"
18
37
19
38
elasticsearch :
20
39
enabled : true
21
40
replicas : 1
41
+ imageTag : 7.13.2
42
+ minimumMasterNodes : 1
22
43
23
44
# Single Node Solution
24
45
clusterHealthCheckParams : " wait_for_status=yellow&timeout=100s"
@@ -40,10 +61,35 @@ ph-ee-engine:
40
61
discovery:
41
62
type: single-node
42
63
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
44
85
45
86
kibana :
46
87
enabled : true
88
+ imageTag : 7.13.2
89
+
90
+ kibanaConfig :
91
+ kibana.yml : |
92
+ monitoring.enabled: false
47
93
48
94
operations :
49
95
enabled : true
@@ -69,6 +115,8 @@ ph-ee-engine:
69
115
ph_ee_connector_channel :
70
116
SPRING_PROFILES_ACTIVE : " bb"
71
117
hostname : " barebone-connector-channel.mifos.io"
118
+ AWS_ACCESS_KEY : " xxx"
119
+ AWS_SECRET_KEY : " xxx"
72
120
73
121
ph_ee_operations_app :
74
122
SPRING_PROFILES_ACTIVE : " bb"
You can’t perform that action at this time.
0 commit comments