Skip to content

Commit

Permalink
Merge pull request #207 from Yolean/kafka-stop-hook
Browse files Browse the repository at this point in the history
Send Kafka a TERM signal at pod stop and wait for shutdown
  • Loading branch information
solsson committed Nov 18, 2018
2 parents 727899a + 72ca76d commit 198666d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kafka/50kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ spec:
command:
- ./bin/kafka-server-start.sh
- /etc/kafka/server.properties
lifecycle:
preStop:
exec:
command: ["sh", "-ce", "kill -s TERM 1; while $(kill -0 1 2>/dev/null); do sleep 1; done"]
resources:
requests:
cpu: 100m
Expand Down
4 changes: 4 additions & 0 deletions zookeeper/50pzoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ spec:
command:
- ./bin/zookeeper-server-start.sh
- /etc/kafka/zookeeper.properties
lifecycle:
preStop:
exec:
command: ["sh", "-ce", "kill -s TERM 1; while $(kill -0 1 2>/dev/null); do sleep 1; done"]
ports:
- containerPort: 2181
name: client
Expand Down
4 changes: 4 additions & 0 deletions zookeeper/51zoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ spec:
command:
- ./bin/zookeeper-server-start.sh
- /etc/kafka/zookeeper.properties
lifecycle:
preStop:
exec:
command: ["sh", "-ce", "kill -s TERM 1; while $(kill -0 1 2>/dev/null); do sleep 1; done"]
ports:
- containerPort: 2181
name: client
Expand Down

0 comments on commit 198666d

Please sign in to comment.