Skip to content

Commit

Permalink
Sets OnDelete explicitly, as RollingUpdate is a new default
Browse files Browse the repository at this point in the history
Due to the use of config map for most of the conifg,
RollingUpdate will be surprising, while still not preventing
running pods that don't have the applied configuration.

An automation effort would be required for proper RollingUpdate behavior.
  • Loading branch information
solsson committed Nov 9, 2017
1 parent 2257cd1 commit 40c6b17
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kafka/50kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ spec:
app: kafka
serviceName: "broker"
replicas: 3
updateStrategy:
type: OnDelete
template:
metadata:
labels:
Expand Down
2 changes: 2 additions & 0 deletions zookeeper/50pzoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ spec:
storage: persistent
serviceName: "pzoo"
replicas: 3
updateStrategy:
type: OnDelete
template:
metadata:
labels:
Expand Down
2 changes: 2 additions & 0 deletions zookeeper/51zoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ spec:
storage: ephemeral
serviceName: "zoo"
replicas: 2
updateStrategy:
type: OnDelete
template:
metadata:
labels:
Expand Down

0 comments on commit 40c6b17

Please sign in to comment.