Skip to content

Commit a2d324d

Browse files
committed
Default shell on Debian shows the same symptom ...
of not forwarding signals as Alpine did. Kafka logs say nothing, and after 30s the container is terminated. With /bin/bash instead the log indicates shutdown behavior. This reverts commit c188f43.
1 parent 5bb49e3 commit a2d324d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

50kafka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
ports:
3838
- containerPort: 9092
3939
command:
40-
- /bin/sh
40+
- /bin/bash
4141
- -c
4242
- >
4343
./bin/kafka-server-start.sh

zookeeper/50pzoo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
- name: JMX_PORT
4545
value: "5555"
4646
command:
47-
- /bin/sh
47+
- /bin/bash
4848
- -euc
4949
- >
5050
export ZOOKEEPER_SERVER_ID=$((${HOSTNAME##*-} + 1));

zookeeper/51zoo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
- name: JMX_PORT
4545
value: "5555"
4646
command:
47-
- /bin/sh
47+
- /bin/bash
4848
- -euc
4949
- >
5050
export ZOOKEEPER_SERVER_ID=$((${HOSTNAME##*-} + 4));

0 commit comments

Comments
 (0)