File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ apiVersion: v1
21
21
appVersion : " 2.7.2"
22
22
description : Apache Pulsar Helm chart for Kubernetes
23
23
name : pulsar
24
- version : 2.7.5
24
+ version : 2.7.6
25
25
home : https://pulsar.apache.org
26
26
sources :
27
27
- https://github.com/apache/pulsar
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ spec:
139
139
- >
140
140
bin/apply-config-from-env.py conf/bookkeeper.conf;
141
141
{{- include "pulsar.autorecovery.zookeeper.tls.settings" . | nindent 10 }}
142
- exec bin/bookkeeper autorecovery
142
+ OPTS="${OPTS} -Dlog4j2.formatMsgNoLookups=true" exec bin/bookkeeper autorecovery
143
143
ports :
144
144
- name : http
145
145
containerPort : {{ .Values.autorecovery.ports.http }}
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ spec:
167
167
- >
168
168
bin/apply-config-from-env.py conf/bookkeeper.conf;
169
169
{{- include "pulsar.bookkeeper.zookeeper.tls.settings" . | nindent 10 }}
170
- exec bin/pulsar bookie;
170
+ OPTS="${OPTS} -Dlog4j2.formatMsgNoLookups=true" exec bin/pulsar bookie;
171
171
{{- if and .Values.rbac.enabled .Values.rbac.psp }}
172
172
securityContext :
173
173
readOnlyRootFilesystem : false
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ spec:
209
209
bin/pulsar zookeeper-shell -server {{ template "pulsar.zookeeper.connect" . }} get {{ template "pulsar.broker.znode" . }};
210
210
done;
211
211
cat conf/pulsar_env.sh;
212
- exec bin/pulsar broker;
212
+ OPTS="${OPTS} -Dlog4j2.formatMsgNoLookups=true" exec bin/pulsar broker;
213
213
ports :
214
214
# prometheus needs to access /metrics endpoint
215
215
- name : http
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ spec:
180
180
- >
181
181
bin/apply-config-from-env.py conf/proxy.conf &&
182
182
echo "OK" > status &&
183
- exec bin/pulsar proxy
183
+ OPTS="${OPTS} -Dlog4j2.formatMsgNoLookups=true" exec bin/pulsar proxy
184
184
ports :
185
185
# prometheus needs to access /metrics endpoint
186
186
- name : http
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ spec:
115
115
bin/apply-config-from-env.py conf/zookeeper.conf;
116
116
{{- include "pulsar.zookeeper.tls.settings" . | nindent 10 }}
117
117
bin/generate-zookeeper-config.sh conf/zookeeper.conf;
118
- exec bin/pulsar zookeeper;
118
+ OPTS="${OPTS} -Dlog4j2.formatMsgNoLookups=true" exec bin/pulsar zookeeper;
119
119
ports :
120
120
# prometheus needs to access /metrics endpoint
121
121
- name : http
You can’t perform that action at this time.
0 commit comments