@@ -120,14 +120,14 @@ diagnosticMode:
120
120
enabled : false
121
121
# # @param diagnosticMode.command Command to override all containers in the deployment
122
122
# #
123
- command :
123
+ command :
124
124
- node
125
125
- src/api/index.js
126
126
# # @param diagnosticMode.args Args to override all containers in the deployment
127
127
# #
128
128
args :
129
129
- --inspect=0.0.0.0:{{ .Values.diagnosticMode.debug.port }}
130
-
130
+
131
131
# # @param diagnosticMode.debug config to override all debug information
132
132
# #
133
133
debug :
@@ -151,13 +151,13 @@ initContainers:
151
151
command :
152
152
- sh
153
153
- -c
154
- - until ./bin/kafka-broker-api-versions.sh --bootstrap-server ${KAFKA_HOST}:${KAFKA_PORT};
154
+ - until ./bin/kafka-broker-api-versions.sh --bootstrap-server ${KAFKA_HOST}:${KAFKA_PORT};
155
155
do
156
156
echo --------------------;
157
157
echo Waiting for Kafka...;
158
- sleep 2;
158
+ sleep 2;
159
159
done;
160
- echo ====================;
160
+ echo ====================;
161
161
echo Kafka ok!;
162
162
env :
163
163
- name : KAFKA_HOST
@@ -170,13 +170,13 @@ initContainers:
170
170
command :
171
171
- sh
172
172
- -c
173
- - until mysql -h ${DB_HOST} -P ${DB_PORT} -u ${DB_USER} --password=${DB_PASSWORD} ${DB_DATABASE} -e 'select version()' ;
173
+ - until mysql -h ${DB_HOST} -P ${DB_PORT} -u ${DB_USER} --password=${DB_PASSWORD} ${DB_DATABASE} -e 'select version()' ;
174
174
do
175
175
echo --------------------;
176
176
echo Waiting for MySQL...;
177
- sleep 2;
177
+ sleep 2;
178
178
done;
179
- echo ====================;
179
+ echo ====================;
180
180
echo MySQL ok!;
181
181
env :
182
182
- name : DB_HOST
@@ -588,7 +588,7 @@ configFiles:
588
588
"consumeTimeout": 1000
589
589
},
590
590
"rdkafkaConf": {
591
- "metadata.broker.list": {{ printf "%s:%s" (include "common.backends.centralbroker.host" .) (include "common.backends.centralbroker.port" .) | quote}},
591
+ "metadata.broker.list": {{ printf "%s:%s" (include "common.backends.centralbroker.host" .) (include "common.backends.centralbroker.port" .) | quote}},
592
592
"client.id": "cl-con-bulk-processing",
593
593
"group.id": "cl-group-bulk-processing",
594
594
"socket.keepalive.enable": true,
@@ -925,7 +925,7 @@ sidecar:
925
925
repository : mojaloop/event-sidecar
926
926
tag : v11.0.1
927
927
pullPolicy : IfNotPresent
928
- command :
928
+ command :
929
929
- npm
930
930
- run
931
931
- start
@@ -1005,3 +1005,18 @@ sidecar:
1005
1005
}
1006
1006
}
1007
1007
}
1008
+
1009
+ # # Configure resource requests and limits
1010
+ # # ref: http://kubernetes.io/docs/user-guide/compute-resources/
1011
+ # #
1012
+ resources : {}
1013
+ # We usually recommend not to specify default resources and to leave this as a conscious
1014
+ # choice for the user. This also increases chances charts run on environments with little
1015
+ # resources, such as Minikube. If you do want to specify resources, uncomment the following
1016
+ # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
1017
+ # limits:
1018
+ # cpu: 100m
1019
+ # memory: 128Mi
1020
+ # requests:
1021
+ # cpu: 100m
1022
+ # memory: 128Mi
0 commit comments